Memory is now interested in the de-evolution of objects, specifically triangles. He starts with an equilateral triangle of side length x, and he wishes to perform operations to obtain an equilateral triangle of side length y.
In a single second, he can modify the length of a single side of the current triangle such that it remains a non-degenerate triangle (triangle of positive area). At any moment of time, the length of each side should be integer.
What is the minimum number of seconds required for Memory to obtain the equilateral triangle of side length y?
The first and only line contains two integers x and y (3 ≤ y < x ≤ 100 000) — the starting and ending equilateral triangle side lengths respectively.
Print a single integer — the minimum number of seconds required for Memory to obtain the equilateral triangle of side length y if he starts with the equilateral triangle of side length x.
6 3
4
8 5
3
22 4
6
In the first sample test, Memory starts with an equilateral triangle of side length 6 and wants one of side length 3. Denote a triangle with sides a, b, and c as (a, b, c). Then, Memory can do .
In the second sample test, Memory can do .
In the third sample test, Memory can do:
.
题目大意:给你一个x和y,让你把边长为x的等边三角形通过最短的步数变为长度为y 的等边三角形
我的方法是逆过来构造的,详细的看代码,我也不好解释,这题感觉比较水的说
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<string>
#include<vector>
#include<stack>
#include<set>
#include<map>
#include<queue>
#include<algorithm>
using namespace std;
int main(){
int x,y;
int a[4];
int i,j;
int coun;
int tmp;
while(~scanf("%d %d",&x,&y)){
for(i=0;i<3;i++){
a[i]=y;
}
coun=0;
while(a[2]<x){
a[2]=a[0]+a[1]-1;
tmp=a[2];
a[2]=a[0];
a[0]=a[1];
a[1]=tmp;
coun++;
/*for(i=0;i<3;i++){
printf("%d ",a[i]);
}
printf("n");*/
}
printf("%dn",coun);
}
return 0;
}
最后
以上就是眼睛大小笼包最近收集整理的关于http://codeforces.com/problemset/problem/712/C的全部内容,更多相关http://codeforces内容请搜索靠谱客的其他文章。
发表评论 取消回复