#P1455B. Jumps
Jumps
No submission language available for this problem.
Description
You are standing on the -axis at point and you want to move to an integer point .
You can make several jumps. Suppose you're currently at point ( may be negative) and jump for the -th time. You can:
- either jump to the point
- or jump to the point .
What is the minimum number of jumps you need to reach the point ?
The first line contains a single integer () — the number of test cases.
The first and only line of each test case contains the single integer () — the destination point.
For each test case, print the single integer — the minimum number of jumps to reach . It can be proved that we can reach any integer point .
Input
The first line contains a single integer () — the number of test cases.
The first and only line of each test case contains the single integer () — the destination point.
Output
For each test case, print the single integer — the minimum number of jumps to reach . It can be proved that we can reach any integer point .
Samples
Note
In the first test case , so you need only one jump: the -st jump from to .
In the second test case . You need at least three jumps:
- the -st jump from to ;
- the -nd jump from to ;
- the -rd jump from to ;
Two jumps are not enough because these are the only possible variants:
- the -st jump as and the -nd one as — you'll reach ;
- the -st jump as and the -nd one as — you'll reach ;
- the -st jump as and the -nd one as — you'll reach ;
- the -st jump as and the -nd one as — you'll reach ;
In the third test case, you need two jumps: the -st one as and the -nd one as , so .
In the fourth test case, you need three jumps: the -st one as , the -nd one as and the -rd one as , so .