hdu 5047 Sawtooth 组合数学 高精度

题目链接:点击打开链接

题意:略

思路:被卡的心力交瘁。。不愿多说,主要是记录一下java的快速读写,防止下次被这样的无良出题人卡。

cpp版:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
struct Bignb{
    long long high,low;
    void print(int& cas)
    {
        if(high<=0)
        {
            printf("Case #%d: %I64d\n",++cas,low);
        }
        else {
            printf("Case #%d: %I64d%012I64d\n",++cas,high,low);
        }
    }
};
const long long mod1=1e6;
const long long mod2=1e12;
int main()
{
    int T,cas=0;
	//  freopen("data.in","r",stdin);
    scanf("%d",&T);
    while (T--)
    {
        long long tp;
		scanf("%I64d",&tp);
        if(tp<1e9){
            printf("Case #%d: %I64d\n",++cas,tp*(8*tp-7)+1);
        }
        else {
            long long tp1=tp%(mod1),tp2=tp/(mod1),temp=16*tp1*tp2-7*tp2;
            Bignb ans;
            ans.high=8*tp2*tp2;
            ans.low=8*tp1*tp1-7*tp1+1;
            ans.low+=(mod1)*(temp%mod1);
            ans.high+=(temp/mod1);
            if(ans.low<0){
                ans.low+=mod2;
                ans.high--;
            }
            else {
                ans.high+=ans.low/mod2;
                ans.low=ans.low%mod2;
            }
            ans.print(cas);
        }
    }
    return 0;
}


java版:

import java.util.*;
import java.io.*;
import java.math.*;
public class test {

	
	

	public static void main(String[] args) throws IOException{
    	BigInteger zero=BigInteger.valueOf(0);
    	BigInteger data1,data2;
    	
 
    	int T;
		 
    	Scanner cin = new Scanner(new BufferedInputStream(System.in));
        PrintWriter cout = new PrintWriter(new BufferedOutputStream(System.out));
        T=cin.nextInt();
        for(int cas=1;cas<=T;cas++){
        	data1=zero;
        	data2=zero;
        	data1=cin.nextBigInteger();
       		data2=data1.multiply(data1);
       		data2=data2.multiply(BigInteger.valueOf(8)).subtract(data1.multiply(BigInteger.valueOf(7))).add(BigInteger.ONE);
       		cout.printf("Case #%d: ",cas);
       		cout.println(data2);
       	//	System.out.println("Case #"+cas+": "+data2);
        }
        cin.close();// cout.flush();
        cout.close();

      }
        
       
}
	


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值