CF773A.Success Rate

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are an experienced Codeforces user. Today you found out that during your activity on Codeforces you have made yy submissions, out of which xx have been successful. Thus, your current success rate on Codeforces is equal to x/yx/y .

Your favorite rational number in the [0;1][0;1] range is p/qp/q . Now you wonder: what is the smallest number of submissions you have to make if you want your success rate to be p/qp/q ?

输入格式

The first line contains a single integer tt ( 1<=t<=10001<=t<=1000 ) — the number of test cases.

Each of the next tt lines contains four integers xx , yy , pp and qq ( 0<=x<=y<=1090<=x<=y<=10^{9} ; 0<=p<=q<=1090<=p<=q<=10^{9} ; y>0y>0 ; q>0q>0 ).

It is guaranteed that p/qp/q is an irreducible fraction.

Hacks. For hacks, an additional constraint of t<=5t<=5 must be met.

输出格式

For each test case, output a single integer equal to the smallest number of submissions you have to make if you want your success rate to be equal to your favorite rational number, or -1 if this is impossible to achieve.

输入输出样例

  • 输入#1

    4
    3 10 1 2
    7 14 3 8
    20 70 2 7
    5 6 1 1
    

    输出#1

    4
    10
    0
    -1
    

说明/提示

In the first example, you have to make 4 successful submissions. Your success rate will be equal to 7/147/14 , or 1/21/2 .

In the second example, you have to make 2 successful and 8 unsuccessful submissions. Your success rate will be equal to 9/249/24 , or 3/83/8 .

In the third example, there is no need to make any new submissions. Your success rate is already equal to 20/7020/70 , or 2/72/7 .

In the fourth example, the only unsuccessful submission breaks your hopes of having the success rate equal to 1.

首页