hdu acm steps 2.1.3

题目:http://acm.hdu.edu.cn/showproblem.php?pid=1713

也是最大公约数的应用。

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

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

注意要用__int64.

 

下面是AC代码:

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
__int64 gcd(__int64 a,__int64 b)
{   	return b>0?gcd(b,a%b):a;   }

__int64 min_times(__int64 x1,__int64 x2)
{    
	__int64 c=gcd(x1,x2);  
	return x1*x2/c;
}
int main()
{ 
	__int64 cas,c1,c2,t1; 
	__int64 t2,p,k,m,n,h; 
	scanf("%I64d",&cas);  
	while(cas--)
	{  
		scanf("%I64d/%I64d",&c1,&t1);   

		scanf("%I64d/%I64dd",&c2,&t2);  
		
		k=t1*t2;     
		m=t2*c1;     
		n=t1*c2;   
		p=min_times(m,n);   

		h=gcd(p,k);       
		if(h==k)
		{       
			printf("%I64d\n",p/h); 
		}     
		else
		{         
			printf("%I64d/%I64d\n",p/h,k/h);   
		}    
	}  
	return 0;
}


 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值