F - Simultaneous Floor Editorial /

Time Limit: 4 sec / Memory Limit: 1024 MB

配点 : 1700

問題文

非負整数の組 a = (a_1,a_2), b = (b_1,b_2) が与えられます. あなたは組 a に対して次の操作を何度でも行うことができます(0 回でもよい):

  • 操作:正実数 x をひとつ選ぶ.a = (a_1,a_2)(\lfloor a_1x\rfloor, \lfloor a_2x\rfloor) に置き換える.

あなたの目的は,組 a と組 b を等しくすることです.目的を達成することが可能か否かを判定してください.目的を達成することが可能な場合には,そのために必要な操作回数の最小値を求めてください.

T 個のテストケースが与えられるので,それぞれについて答えを求めてください.

制約

  • 1\leq T\leq 10^5
  • 0\leq a_1, a_2, b_1, b_2 \leq 10^9

入力

入力は以下の形式で標準入力から与えられます.

T
\text{case}_1
\vdots
\text{case}_T

各テストケースは以下の形式で与えられます.

a_1 a_2 b_1 b_2

出力

T 行出力してください.i 行目には i 番目のテストケースについて,ab に等しくすることが不可能ならば -1,可能ならばそのために必要な操作回数の最小値を出力してください.


入力例 1

7
2 3 1 1
1 1 2 3
3 2 9 8
12 34 56 78
56 78 12 34
87 65 43 21
43 21 87 65

出力例 1

1
-1
3
-1
4
2
-1

1 番目のテストケースについて,以下が最適な手順の一例です:

  • はじめ,a = (2,3) である.
  • x = 0.6 として操作を行う.a(\lfloor 1.2 \rfloor, \lfloor 1.8\rfloor) = (1,1) に置き換えられる.

3 番目のテストケースについて,以下が最適な手順の一例です:

  • はじめ,a = (3,2) である.
  • x = 1.5 として操作を行う.a(4,3) に置き換えられる.
  • x = 1.7 として操作を行う.a(6,5) に置き換えられる.
  • x = 1.6 として操作を行う.a(9,8) に置き換えられる.

入力例 2

9
5 5 5 5
5 5 3 3
3 9 0 2
3 9 0 3
0 3 3 9
3 0 2 0
5 2 0 0
0 0 5 2
0 0 0 0

出力例 2

0
1
1
2
-1
1
1
-1
0

Score : 1700 points

Problem Statement

You are given pairs of non-negative integers a = (a_1,a_2) and b = (b_1,b_2). You can perform the following operation on the pair a any number of times, possibly zero.

  • Operation: Choose a positive real number x. Replace a = (a_1,a_2) with (\lfloor a_1x\rfloor, \lfloor a_2x\rfloor).

Your objective is to make the pair a equal the pair b. Determine whether it is achievable. If it is, find the minimum number of times you must perform the operation to achieve it.

You have T test cases to solve.

Constraints

  • 1\leq T\leq 10^5
  • 0\leq a_1, a_2, b_1, b_2 \leq 10^9

Input

The input is given from Standard Input in the following format:

T
\text{case}_1
\vdots
\text{case}_T

Each test case is given in the following format:

a_1 a_2 b_1 b_2

Output

Print T lines. The i-th line should contain -1 if it is impossible to make a equal b in the i-th test case, and otherwise, the minimum number of times the operation must be performed to achieve the objective.


Sample Input 1

7
2 3 1 1
1 1 2 3
3 2 9 8
12 34 56 78
56 78 12 34
87 65 43 21
43 21 87 65

Sample Output 1

1
-1
3
-1
4
2
-1

For the first test case, here is one optimal solution.

  • Initially, a = (2,3).
  • Perform the operation with x = 0.6, replacing a with (\lfloor 1.2 \rfloor, \lfloor 1.8\rfloor) = (1,1).

For the third test case, here is one optimal solution.

  • Initially, a = (3,2).
  • Perform the operation with x = 1.5, replacing a with (4,3).
  • Perform the operation with x = 1.7, replacing a with (6,5).
  • Perform the operation with x = 1.6, replacing a with (9,8).

Sample Input 2

9
5 5 5 5
5 5 3 3
3 9 0 2
3 9 0 3
0 3 3 9
3 0 2 0
5 2 0 0
0 0 5 2
0 0 0 0

Sample Output 2

0
1
1
2
-1
1
1
-1
0