#719
Unrated
Transforming Pairs
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

Bessie the brilliant bovine has discovered a new fascination—mathematical magic! One day, while trotting through the fields of Farmer John’s ranch, she stumbles upon two enchanted piles of hay. The first pile contains aa bales, and the second pile contains bb bales (1a,b10181\le a,b\le 10^{18}).

Next to the hay, half-buried in the dirt, she discovers an ancient scroll. As she unfurls it, glowing letters reveal a prophecy:

To fulfill the decree of the Great Grasslands, the chosen one must transform these two humble hay piles into exactly cc and dd bales—no more, no less.

Bessie realizes she can only perform the following two spells: She can magically conjure new bales to increase the first pile’s size by the amount currently in the second pile.She can magically conjure new bales to increase the second pile’s size by the amount currently in the first pile. She must perform these operations sequentially, but she can perform them any number of times and in any order. She must reach exactly cc bales in the first pile and dd bales in the second pile (1c,d10181\le c,d\le 10^{18}).

For each of TT (1T1041\le T\le 10^4) independent test cases, output the minimum number of operations needed to fulfill the prophecy, or if it is impossible to do so, output -1.

입력

The first line contains TT.

The next TT lines each contain four integers a,b,c,da,b,c,d.

출력

Output TT lines, the answer to each test case.

예제 입력 1

4
5 3 5 2
5 3 8 19
5 3 19 8
5 3 5 3

예제 출력 1

-1
3
-1
0

예제 입력 2

1
1 1 1 1000000000000000000

예제 출력 2

999999999999999999

점수

Inputs 3-4: max(c,d)20min(a,b)\max(c, d) \le 20 \cdot\min(a, b) Inputs 5-7: T10T \le 10 and a,b,c,d106a,b,c,d\le 10^6 Inputs 8-12: No additional constraints

코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Unrated0명 투표
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.