码迷,mamicode.com
首页 > 其他好文 > 详细

hdu_5551_多校联赛5_1009

时间:2015-08-04 22:55:28      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:多校联赛

把表打出来一部分,轻松找到规律即可。
技术分享

import java.util.Scanner;
import java.math.BigInteger;
import java.math.BigDecimal;
public class Main{
    public static void main(String []args){
        Scanner cin=new Scanner(System.in);
        int t;
        BigInteger a[]=new BigInteger[1011];
        a[1]=BigInteger.ONE; 
        a[2]=BigInteger.ONE; 

        for(int i=3;i<=1010;i++){
            a[i]=a[i-1].add(a[i-2]);
        }
        int n;
        t=cin.nextInt();
        BigInteger two=new BigInteger("2");
        BigInteger mo=new BigInteger("258280327");
        BigInteger sum,tmp,m;
        while(t!=0){
            t--;
            n=cin.nextInt();
            m=cin.nextBigInteger();
            sum= new BigInteger("0");
            for(int i=1;i<=1000;i++){
                tmp=a[i].multiply(two);
                int res = m.compareTo(tmp);
                if(res>0){
                    m=m.subtract(tmp);
                    sum=sum.add(tmp);
                }   
                else{
                    res = m.compareTo(a[i]);
                    if(res>0) System.out.println(sum.divide(two).add(m).subtract(a[i]).subtract(BigInteger.ONE).mod(mo));
                    else System.out.println(sum.divide(two).add(m).subtract(BigInteger.ONE).mod(mo));
                    break;
                }
            }
        }
    }
} 

版权声明:本文为博主原创文章,未经博主允许不得转载。

hdu_5551_多校联赛5_1009

标签:多校联赛

原文地址:http://blog.csdn.net/bryant03/article/details/47283673

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!