Codeforces Round #382 (Div. 1) A. Tennis Championship

来源:互联网 发布:湖北广电网络官网 编辑:程序博客网 时间:2024/05/22 14:02


A. Tennis Championship
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Famous Brazil city Rio de Janeiro holds a tennis tournament and Ostap Bender doesn't want to miss this event. There will be n players participating, and the tournament will follow knockout rules from the very first game. That means, that if someone loses a game he leaves the tournament immediately.

Organizers are still arranging tournament grid (i.e. the order games will happen and who is going to play with whom) but they have already fixed one rule: two players can play against each other only if the number of games one of them has already played differs by no more than one from the number of games the other one has already played. Of course, both players had to win all their games in order to continue participating in the tournament.

Tournament hasn't started yet so the audience is a bit bored. Ostap decided to find out what is the maximum number of games the winner of the tournament can take part in (assuming the rule above is used). However, it is unlikely he can deal with this problem without your help.

Input

The only line of the input contains a single integer n (2 ≤ n ≤ 1018) — the number of players to participate in the tournament.

Output

Print the maximum number of games in which the winner of the tournament can take part.

Examples
input
2
output
1
input
3
output
2
input
4
output
2
input
10
output
4
Note

In all samples we consider that player number 1 is the winner.

In the first sample, there would be only one game so the answer is 1.

In the second sample, player 1 can consequently beat players 2 and 3.

In the third sample, player 1 can't play with each other player as after he plays with players 2 and 3 he can't play against player 4, as he has 0 games played, while player 1 already played 2. Thus, the answer is 2 and to achieve we make pairs (1, 2) and (3, 4) and then clash the winners.

题意:有n个人打淘汰赛。一旦输了就淘汰。只有已比赛次数相差<=1的人才能比赛,问胜者最多能赢几场。

思路:基本上手推几下就能知道其中的原理然后明白是斐波那契数列。。然后就是一道水题了。

#include<cstdio>#include<algorithm>#include<cstring>#include<iostream>#include<cmath>#include<queue>#include<string>#include<functional>typedef long long LL;using namespace std;#define maxn 105#define ll l,mid,now<<1#define rr mid+1,r,now<<1|1#define lson l1,mid,l2,r2,now<<1#define rson mid+1,r1,l2,r2,now<<1|1#define pi acos(-1.0)#define inf 0x3f3f3f3fconst int mod = 1e9 + 7;int main(){LL a[maxn];a[0] = a[1] = 1;int i = 2, end;while (1){a[i] = a[i - 1] + a[i - 2];if (a[i]>1000000000000000000ll){end = i;break;}i++;}LL n;while (~scanf("%lld", &n)){for (int i = 1; i <= end; i++){if (a[i] > n){printf("%d\n", i - 2);break;}}}}


0 0
原创粉丝点击