您的位置:首页 > 其它

ACMSTEP 2.1.3 相遇周期 //数论 分数的最小公倍数

2011-08-11 11:33 447 查看
原题链接 同题:HDU 1713

输入c1/t1 c2/t2 ,也就是速度的分数形式,转换成:c1*t2/(t1*t2), c2*t1/( t1*t2 );

需要求出分子的最小公倍数k,然后k/( t1*t2 )就是题目求的周期

注意用 __int64, 否则WA


#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <string>
#include <vector>
#include <queue>
#include <algorithm>

using namespace std;

__int64 gcd(__int64 a,__int64 b)
{
if (!a || !b) return a>b?a:b;
for (int t; t = x% y; x =y; y = t);
return y;
}
int main()
{
int t;
__int64 a,b,c,d;
cin>>t;
while(t--)
{
scanf("%I64d/%I64d%I64d/%I64d",&a,&b,&c,&d);
a=a*d*c*b/gcd(a*d,c*b);
b=b*d;
if(a%b)
{
c=gcd(a,b);
printf("%I64d/%I64d\n",a/c,b/c);
}
else
printf("%I64d\n",a/b);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: