time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
You have two vessels with water. The first vessel contains a� grams of water, and the second vessel contains b� grams of water. Both vessels are very large and can hold any amount of water.
You also have an empty cup that can hold up to c� grams of water.
In one move, you can scoop up to c� grams of water from any vessel and pour it into the other vessel. Note that the mass of water poured in one move does not have to be an integer.
What is the minimum number of moves required to make the masses of water in the vessels equal? Note that you cannot perform any actions other than the described moves.
Input
Each test contains multiple test cases. The first line contains the number of test cases t� (1≤t≤10001≤�≤1000). The description of the test cases follows.
Each test case consists of a single line containing three integers a�, b�, and c� (1≤a,b,c≤1001≤�,�,�≤100) — the mass of water in the vessels and the capacity of the cup, respectively.
Output
For each test case, output a single number — the minimum number of moves required to make the masses of water in the vessels equal. It can be shown, that it is always possible.
Example
input
Copy
6
3 7 2
17 4 3
17 17 1
17 21 100
1 100 1
97 4 3
output
Copy
1 3 0 1 50 16
Note
In the first test case, only one move is enough: if we pour 22 grams of water from the second vessel into the first one, both vessels will contain 55 grams of water.
In the second example test case, three moves are enough:
Note that this is not the only way to equalize the vessels in 33 moves, but there is no way to do it in 22 moves.
In the third example test case, the vessels initially contain the same amount of water, so no moves are needed. The answer is 00.
解题说明:此题是一道数学题,由于不需要舀子每次装满水,那么直接计算即可。先判断平均值,然后判断需要舀多少次。
- #include
- #include
- int main()
- {
- int a, b, c, n, i, m;
- float move;
- scanf("%d", &n);
- for (i = 1; i <= n; i++)
- {
- scanf("%d %d %d", &a, &b, &c);
- move = (float)(abs(a - b)) / (2 * c);
- m = (int)(ceil(move));
- printf("%d\n", m);
- }
- return 0;
- }