zoukankan      html  css  js  c++  java
  • CodeForces 592C The Big Race

    公倍数之间的情况都是一样的,有循环节。

    注意min(a,b)>t的情况和最后一段的处理。C++写可能爆longlong,直接Java搞吧......

    import java.io.BufferedInputStream;
    import java.math.BigInteger;
    import java.util.Scanner;
    
    public class Main {
        
        public static BigInteger GCD(BigInteger a,BigInteger b)
        {
            if(b.compareTo(BigInteger.ZERO)==0) return a;
            return GCD(b,a.remainder(b));
        }
        
        public static BigInteger MIN(BigInteger a,BigInteger b)
        {
            if(a.compareTo(b)>=0) return b;
            return a;
        }
        
        public static void main(String[] args) {
            Scanner sc = new Scanner (new BufferedInputStream(System.in));
            
            BigInteger t=sc.nextBigInteger();
            BigInteger a=sc.nextBigInteger();
            BigInteger b=sc.nextBigInteger();
            
            if(MIN(a,b).compareTo(t)>0)
            {
                System.out.print("1"+"/"+"1");
            }
            else{
                BigInteger gcd=GCD(a,b);
                BigInteger lcm=a.multiply(b).divide(gcd);
                BigInteger k=MIN(a,b).subtract(BigInteger.ONE);
                BigInteger ans=BigInteger.ZERO;
                BigInteger tmp=t.divide(lcm);
                ans=k;
                if(tmp.compareTo(BigInteger.ZERO)>0)
                {
                    BigInteger u=tmp.subtract(BigInteger.ONE);
                    ans=ans.add(u.multiply(k.add(BigInteger.ONE)));
                    ans=ans.add(BigInteger.ONE);
                    ans=ans.add(MIN(k,t.subtract(lcm.multiply(tmp))));
                }
                BigInteger fz=ans;
                BigInteger fm=t;
                BigInteger e=GCD(fz,fm);
                fz=fz.divide(e);
                fm=fm.divide(e);
                System.out.print(fz.toString()+"/"+fm.toString());
            }
        }
    } 
  • 相关阅读:
    记事本+hhc生成CHM
    在Delphi里实现[int map string]对
    U盘插入拔出提示
    Delphi研发笔试试卷 我的小解
    Excel也能用SQL查询
    访问JAVA中的字段(jfieldID)
    调用JAVA方法
    缓存字段ID和方法ID
    JNI引用
    访问数组(JNI)
  • 原文地址:https://www.cnblogs.com/zufezzt/p/5470217.html
Copyright © 2011-2022 走看看