码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 5584 LCM Walk(数学推导公式,规律)

时间:2015-12-02 22:09:55      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

Problem Description
A frog has just learned some number theory, and cant wait to show his ability to his girlfriend.

Now the frog is sitting on a grid map of infinite rows and columns. Rows are numbered 1,2,? from the bottom, so are the columns. At first the frog is sitting at grid (sx,sy), and begins his journey.

To show his girlfriend his talents in math, he uses a special way of jump. If currently the frog is at the grid (x,y), first of all, he will find the minimum z that can be divided by both x and y, and jump exactly z steps to the up, or to the right. So the next possible grid will be (x+z,y), or (x,y+z).

After a finite number of steps (perhaps zero), he finally finishes at grid (ex,ey). However, he is too tired and he forgets the position of his starting grid!

It will be too stupid to check each grid one by one, so please tell the frog the number of possible starting grids that can reach (ex,ey)!

 

Input
First line contains an integer T, which indicates the number of test cases.

Every test case contains two integers ex and ey, which is the destination grid.

⋅ 1≤T≤1000.
⋅ 1≤ex,ey≤109.

 

Output
For every test case, you should output "Case #x: y", where x indicates the case number and counts from 1 and y is the number of possible starting grids.

 

Sample Input
3
6 10
6 8
2 8

 

 

 

Sample Output
Case #1: 1 
Case #2: 2 
Case #3: 3

 

 

 

Source

 

http://blog.csdn.net/queuelovestack/article/details/50094499  这个博客讲的很好,就直接复制了。

 

题意:有一只青蛙,它从起点(x,y)出发,每次它会走LCM(x,y)步[LCM(x,y)就是x,y的最小公倍数]到达点(x+LCM(x,y),y)或点(x,y+LCM(x,y)),最终,它会到达点(ex,ey),现给你终点(ex,ey),要你求出它的起点有多少种可能

解题思路:我们暂时假设x,y的最大公约数gcd(x,y)=k,那么我们不妨用技术分享来表示x,用技术分享来表示y,那么新得到的点必定是技术分享技术分享,因为x与y的最小公倍数技术分享

我们不妨求解一下新的点x和y的gcd值,以点技术分享为例

技术分享

因为技术分享技术分享时互质的,技术分享技术分享也是互质的,故技术分享

所以,我们可以发现先得到的点和原来的点有相同的最大公约数,故我们可以利用这一点来根据终点求解原先的起点

还有一点需要提及的是,对于当前点(x,y),x,y中小的那个值必定是之前那个点中的x值或y值,故我们可以开始逆推了

 

技术分享
 1 #pragma comment(linker, "/STACK:1024000000,1024000000")
 2 #include<stdio.h>
 3 #include<string.h>
 4 #include<stdlib.h>
 5 #include<queue>
 6 #include<stack>
 7 #include<math.h>
 8 #include<vector>
 9 #include<map>
10 #include<set>
11 #include<cmath>
12 #include<string>
13 #include<algorithm>
14 #include<iostream>
15 #define exp 1e-10
16 using namespace std;
17 const int N = 100005;
18 const int M = 10005;
19 const int inf = 1000000000;
20 const int mod = 10007;
21 int gcd(int x,int y)
22 {
23     if(x%y)
24         return gcd(y,x%y);
25     return y;
26 }
27 int main()
28 {
29     int t,k,c,p=1,x,y;
30     scanf("%d",&t);
31     while(t--)
32     {
33         c=1;
34         scanf("%d%d",&x,&y);
35         if(x>y)
36             swap(x,y);
37         k=gcd(x,y);
38         while(y%(x+k)==0)
39         {
40             c++;
41             y=y/(x/k+1);
42             if(x>y)
43                 swap(x,y);
44             k=gcd(x,y);
45         }
46         printf("Case #%d: %d\n",p++,c);
47     }
48     return 0;
49 }
View Code

 

hdu 5584 LCM Walk(数学推导公式,规律)

标签:

原文地址:http://www.cnblogs.com/UniqueColor/p/5014054.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!