HDOJ5640King's Cake(数论)

Posted myx12345

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDOJ5640King's Cake(数论)相关的知识,希望对你有一定的参考价值。

题意:

技术分享图片

思路:

技术分享图片

 1 #include<cstdio>
 2 #include<cstdlib>
 3 #include<iostream>
 4 #include<algorithm>
 5 #include<cstring>
 6 using namespace std;
 7 int n,m,cas,ans;
 8 
 9 int solve(int n,int m)
10 {
11     int t;
12     if(n<m){t=n; n=m; m=t;}
13     if(!m) return 0;
14     int s=n/m+solve(m,n%m);
15     return s;
16 }
17 
18 int main()
19 {
20     scanf("%d",&cas);
21     for(int i=1;i<=cas;i++)
22     {
23       scanf("%d%d",&n,&m);
24       ans=solve(n,m);
25       printf("%d
",ans);
26     }
27     return 0;
28 }

 

以上是关于HDOJ5640King's Cake(数论)的主要内容,如果未能解决你的问题,请参考以下文章

HDU 5640

ACM学习历程—BestCoder Round #75

Gym 101933 King's Colors

[HDOJ5933]ArcSoft's Office Rearrangement(贪心)

HDOJ4328 Cut the cake

HDU 4489 The King's Ups and Downs