题目链接
相遇周期
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3218 Accepted Submission(s): 1505
Problem Description
2007年3月26日,在中俄两国元首的见证下,中国国家航天局局长孙来燕与俄罗斯联邦航天局局长别尔米诺夫共同签署了《中国国家航天局和俄罗斯联邦航天局关于联合探测火星-火卫一合作的协议》,确定中俄双方将于2009年联合对火星及其卫星“火卫一”进行探测。
而卫星是进行这些探测的重要工具,我们的问题是已知两颗卫星的运行周期,求它们的相遇周期。
Input
输入数据的第一行为一个正整数T, 表示测试数据的组数. 然后是T组测试数据. 每组测试数据包含两组正整数,用空格隔开。每组包含两个正整数,表示转n圈需要的天数(26501/6335,表示转26501圈要6335天),用’/‘隔开。
Output
对于每组测试数据, 输出它们的相遇周期,如果相遇周期是整数则用整数表示,否则用最简分数表示。
Sample Input
2
26501/6335 18468/42
29359/11479 15725/19170
Sample Output
81570078/7
5431415
求最小的周期公倍数.
需要unsigned类型.
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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
| #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #include<set> #include<cmath> #include<cstdlib> #define MAX (1 << 20) using namespace std;
unsigned gcd(unsigned x, unsigned y) { unsigned t; while(y) { t = y; y = x % y; x = t; } return x; }
void fun(unsigned &x, unsigned &y) { int t = gcd(x, y); x /= t; y /= t; }
int main() { int t; unsigned ai,aj,bi,bj, m, n; scanf("%d", &t); while(t--) { scanf("%d/%d %d/%d", &ai, &aj, &bi, &bj); if(aj == 0 || bj ==0) { printf("0\n"); continue; } fun(ai, aj); fun(bi, bj); m = gcd(ai, bi); n = gcd(aj, bj); m = ai * bi / m; if(m%n) { printf("%d/%d\n", m, n); } else { printf("%d\n", m/n); } } return 0; }
|