MYF

HDU 5640 King's Cake

题目链接

HDU 5640
小模拟,递归求解

题目分析

题目大意

BestCoder #75a 中文题面

解析

递归求解即可。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <cstring>
#include <iostream>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1)
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#define eps 1e-8
#define INF 0x3f3f3f3f
#pragma comment(linker, "/STACK:1024000000,1024000000")
typedef long long ll;
using namespace std;
#define maxn 100000+5
#define mod 1000000007
int work(int n,int m){
if (n==0||m==0) {
return 0;
}
if (n==m) {
return 1;
}
else{
if (m>n) {
swap(n, m);
}
return n/m+work(m, n%m);
}
}
int main(){
int t;
int n,m;
cin>>t;
while (t--) {
cin>>n>>m;
cout<<work(n,m)<<endl;
}
}