当前位置: 代码迷 >> 综合 >> HDU - 5640 -King's Cake
  详细解决方案

HDU - 5640 -King's Cake

热度:67   发布时间:2024-01-08 23:51:08.0

It is the king’s birthday before the military parade . The ministers prepared a rectangle cake of size
n×m(1≤n,m≤10000)
n×m(1≤n,m≤10000)
. The king plans to cut the cake himself. But he has a strange habit of cutting cakes. Each time, he will cut the rectangle cake into two pieces, one of which should be a square cake.. Since he loves squares , he will cut the biggest square cake. He will continue to do that until all the pieces are square. Now can you tell him how many pieces he can get when he finishes.

Input
The first line contains a number
T(T≤1000)
T(T≤1000)
, the number of the testcases.

For each testcase, the first line and the only line contains two positive numbers
n,m(1≤n,m≤10000)
n,m(1≤n,m≤10000)
.
Output
For each testcase, print a single number as the answer.

Sample Input
2
2 3
2 5

Sample Output
3
4

hint:
For the first testcase you can divide the into one cake of 2×2 , 2 cakes of 1×1

#include"stdio.h"
int main()
{int n,chang,kuan,sum,i;scanf("%d",&n);for(i=0;i<n;i++){scanf("%d%d",&kuan,&chang);sum=0;while(1){if(chang>kuan){sum++;chang=chang-kuan;}if(kuan>chang){sum++;kuan=kuan-chang;}if(chang==kuan){sum=sum++;break;}}printf("%d\n",sum);}return 0;
}