我是靠谱客的博主 冷静猫咪,这篇文章主要介绍Codeforces Round #188 (Div. 1) / 317A Perfect Pair(数学&优化),现在分享给大家,希望可以做个参考。

A. Perfect Pair
http://codeforces.com/problemset/problem/317/A
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Let us call a pair of integer numbers m-perfect, if at least one number in the pair is greater than or equal to m. Thus, the pairs (3, 3) and (0, 2) are 2-perfect while the pair (-1, 1) is not.

Two integers xy are written on the blackboard. It is allowed to erase one of them and replace it with the sum of the numbers, (x + y).

What is the minimum number of such operations one has to perform in order to make the given pair of integers m-perfect?

Input

Single line of the input contains three integers xy and m ( - 1018 ≤ xym ≤ 1018).

Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preffered to use the cincout streams or the %I64dspecifier.

Output

Print the minimum number of operations or "-1" (without quotes), if it is impossible to transform the given pair to the m-perfect one.

Sample test(s)
input
复制代码
1
1 2 5
output
复制代码
1
2
input
复制代码
1
-1 4 15
output
复制代码
1
4
input
复制代码
1
0 -1 5
output
复制代码
1
-1

注意x,y异号的情况可以优化。

优化后复杂度:O(log m)


完整代码:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*30ms,0KB*/ #include<cstdio> #include<cmath> #include<algorithm> using namespace std; int main(void) { __int64 x, y, m, count = 0; scanf("%I64d%I64d%I64d", &x, &y, &m); if (m <= max(x, y)) printf("0"); else { if (x <= 0 && y <= 0) printf("-1"); else { ///x,y异号的情况可以优化一下 if (x < 0 && y > 0){ count = ceil((double) - x / y); x+=count*y; } else if (x > 0 && y < 0){ count = ceil((double) - y / x); y+=count*x; } while (max(x, y) < m) { if (x < y) x += y; else y += x ; ++count; } printf("%I64d", count); } } return 0; }



最后

以上就是冷静猫咪最近收集整理的关于Codeforces Round #188 (Div. 1) / 317A Perfect Pair(数学&优化)的全部内容,更多相关Codeforces内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(87)

评论列表共有 0 条评论

立即
投稿
返回
顶部