博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA 10288 Coupons
阅读量:5842 次
发布时间:2019-06-18

本文共 712 字,大约阅读时间需要 2 分钟。

#include 
#include
#include
#define N 34typedef long long LL;using namespace std;struct T{ LL zs,fz,fm; T() { zs = 0; fz = 0; fm = 1; } T(LL a, LL b, LL c) { zs = a; fz = b; fm = c; } void Add(struct T t) { zs += t.zs; fz = fz*t.fm+t.fz*fm; fm = fm*t.fm; Standard(); } void Standard() { zs += fz/fm; fz = fz%fm; LL g=gcd(fz,fm); fz = fz/g; fm = fm/g; } LL gcd(LL a, LL b) { return b==0?a:gcd(b,a%b); }};struct T ans[N];void Init(){ for(int i=1;i

 

转载于:https://www.cnblogs.com/tuty/p/4856625.html

你可能感兴趣的文章
Spring的注解配置与XML配置之间的比较
查看>>
2014手机分析图
查看>>
Linux PID 1 和 Systemd
查看>>
一元多项式相加
查看>>
commandLink/commandButton/ajax backing bean action/listener method not invoked (转)
查看>>
js计算时间差,包括计算,天,时,分,秒
查看>>
使用rsync在windows(服务端)与linux(客户端)之间同步
查看>>
软件工作的大环境
查看>>
vs2013中,自定义mvc 添加视图脚手架
查看>>
移动端Web开发调试之Chrome远程调试(Remote Debugging)
查看>>
Eclipse插件开发中的选择监听机制(Selection Provider-Listener)
查看>>
Java类加载过程及static详解
查看>>
background-color和background-image相关细节
查看>>
如何学好C#
查看>>
梅沙教育APP简单分析-版本:iOS v1.2.21-Nathaneko-佳钦
查看>>
Word中如何设置图片与段落的间距为半行
查看>>
Firefox about
查看>>
Angular - - angular.element
查看>>
美图秀秀首页界面按钮设计(二)
查看>>
nginx安装及负载均衡配置
查看>>