303812: CF735C. Tennis Championship

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Tennis Championship

题意翻译

有一个$n$ 个节点的二叉树。 要求每个节点的两个儿子的子树最大深度相差不超$1$,求最大深度。 $n <= 10^{18}$ 感谢@Harryheqg 提供的翻译

题目描述

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.

输入输出格式

输入格式


The only line of the input contains a single integer $ n $ ( $ 2<=n<=10^{18} $ ) — the number of players to participate in the tournament.

输出格式


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

输入输出样例

输入样例 #1

2

输出样例 #1

1

输入样例 #2

3

输出样例 #2

2

输入样例 #3

4

输出样例 #3

2

输入样例 #4

10

输出样例 #4

4

说明

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.

Input

题意翻译

有一个$n$ 个节点的二叉树。 要求每个节点的两个儿子的子树最大深度相差不超$1$,求最大深度。 $n <= 10^{18}$ 感谢@Harryheqg 提供的翻译

加入题单

算法标签: