HDU4919 Exclusive or(Java大数推公式)

34 篇文章 0 订阅
2 篇文章 1 订阅

Java代码。还没学java。淡淡的忧伤,碰到大数什么的就亏大了。当做模板照着先敲下来。http://blog.csdn.net/houserabbit/article/details/38397831

import java.util.*;
import java.io.*;
import java.math.*;

public class Main {
	public static BigInteger two=BigInteger.valueOf(2);
	public static BigInteger four=BigInteger.valueOf(4);
	public static BigInteger six=BigInteger.valueOf(6);
	public static HashMap<BigInteger,BigInteger> map=new HashMap<BigInteger,BigInteger>();
	
	public static BigInteger F(BigInteger n)
	{
		if (map.containsKey(n))
			return map.get(n);
		BigInteger t1=n.divide(two);
		BigInteger t2=n.mod(two);
		BigInteger t3=t1.subtract(BigInteger.ONE);
		if (t2.compareTo(BigInteger.ONE)==0)
			t1=F(t1).multiply(four).add(t1.multiply(six));
		else
			t1=F(t1).multiply(two).add(F(t3).multiply(two)).add(t1.multiply(four)).subtract(four);
		map.put(n, t1);
		return t1;
	}
	public static void main(String[] args)
	{
		Scanner cin=new Scanner(System.in);
		map.put(BigInteger.ZERO, BigInteger.ZERO);
		map.put(BigInteger.ONE, BigInteger.ZERO);
		while (cin.hasNext())
		{
			BigInteger n=cin.nextBigInteger();
			System.out.println(F(n));
		}
		cin.close();
	}

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值