CF BUDDY
← Problems·

1632C · Strange Test

1600 · binary search, bitmasks, brute force

Problem: 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 aa and bb (a<ba < b). After that, the student can apply any of the following operations any number of times:

  • a:=a+1a := a + 1 (increase aa by 11),
  • b:=b+1b := b + 1 (increase bb by 11),
  • a:=a  ba := a \ | \ b (replace aa with the bitwise OR of aa and bb).

To get full marks on the test, the student has to tell the teacher the minimum required number of operations to make aa and bb equal.

Igor already knows which numbers the teacher will give him. Help him figure out what is the minimum number of operations needed to make aa equal to bb.

Input Format: Each test contains multiple test cases. The first line contains the number of test cases tt (1t1041 \le t \le 10^4). Description of the test cases follows.

The only line for each test case contains two integers aa and bb (1a<b1061 \le a < b \le 10^6).

It is guaranteed that the sum of bb over all test cases does not exceed 10610^6.

Output Format: For each test case print one integer — the minimum required number of operations to make aa and bb equal.

Note: 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.

Sample Cases

Case 1

Input

5
1 3
5 8
2 5
3 19
56678 164422

Output

1
3
2
1
23329

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback