After making a paper ship from the square piece, Vasya looked on the remaining (a - b) mm × b mm strip of paper. He got the idea to use this strip of paper in the same way to make an origami, and then use the remainder (if it exists) and so on. At the moment when he is left with a square piece of paper, he will make the last ship from it and stop.
Can you determine how many ships Vasya will make during the lesson?
The first line of the input contains two integers a, b (1 ≤ b < a ≤ 1012) — the sizes of the original sheet of paper.
Print a single integer — the number of ships that Vasya will make.
2 1
2
10 7
6
1000000000000 1
1000000000000
Pictures to the first and second sample test.
题意:给一a * b的板,问依照题中所给方法可以裁成多少正方形。
解析:直接递归即解。
AC代码:
#include#include #define LL long longLL solve(LL a, LL b){ if(b == 1) return a; if(a % b == 0) return a / b; //開始忘了考虑整除。RE on test #7 return solve(b, a % b) + (a / b);}int main(){// freopen("in.txt", "r", stdin); LL a, b; while(scanf("%lld%lld", &a, &b)==2){ printf("%lld\n", solve(a, b)); } return 0;}