cf 317A. Perfect Pair

http://codeforces.com/problemset/problem/317/A
A. Perfect Pair
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 x, y 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 x, y and m ( - 1018 ≤ x, y, m ≤ 1018).

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

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 2 5
Output
2
Input
-1 4 15
Output
4
Input
0 -1 5
Output
-1
Note

In the first sample the following sequence of operations is suitable: (1, 2) (3, 2) (5, 2).

In the second sample: (-1, 4) (3, 4) (7, 4) (11, 4) (15, 4).

Finally, in the third sample x, y cannot be made positive, hence there is no proper sequence of operations.

//有公式可以二分答案,反正我只会暴力
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int main(){
    long long a,b,c,n,t;
    while(~scanf("%lld%lld%lld",&a,&b,&c)){
        if(a>b)swap(a,b);
        if(b>=c)n=0;
        else if(b<=0)n=-1;
        else {
            n=0;
			if(a<0){
				n=-a/b;
				if(n*b!=-a)n++;
				a=a+b*n;
			}
            while(b<c){
                n++;
                t=b;b=a+b;a=t;
            }
        }
        printf("%lld\n",n);
    }
return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值