C. Strange Test
Igor is in 11th grade. Tomorrow he will have to write an informatics test by the strictest teacher in the school, Pavel Denisovich.
Igor knows how the test will be conducted: first of all, the teacher will give each student two positive integers
a:=a+1 (increasea by1 ),b:=b+1 (increaseb by1 ),a:=a | b (replacea with the bitwise OR ofa andb ).
To get full marks on the test, the student has to tell the teacher the minimum required number of operations to make
Igor already knows which numbers the teacher will give him. Help him figure out what is the minimum number of operations needed to make
Each test contains multiple test cases. The first line contains the number of test cases
The only line for each test case contains two integers
It is guaranteed that the sum of
For each test case print one integer — the minimum required number of operations to make
In the first test case, it is optimal to apply the third operation.
In the second test case, it is optimal to apply the first operation three times.
In the third test case, it is optimal to apply the second operation and then the third operation.
No comments:
Post a Comment