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

HDU 4919 Exclusive or

时间:2014-08-06 11:55:01      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:hdu   数学   

题意:

求题目中的式子 - -b

思路:

推递推公式  比赛时候队友就说数字上有关系  but没推出来 - -b  题解有过程:

bubuko.com,布布扣

推的过程中最巧妙的就是利用异或的性质  相邻两个数字相当于修改二进制最后两位  不过这样做通过异或出来的结果是相同的

题目中数字太大  用java比较好写  处理递推的问题常用记忆化搜索

代码:

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 tmp1 = n.divide(two);
		BigInteger tmp2 = n.mod(two);
		BigInteger tmp3 = tmp1.subtract(BigInteger.ONE);
		if (tmp2.compareTo(BigInteger.ONE) == 0)
			tmp1 = F(tmp1).multiply(four).add(tmp1.multiply(six));
		else
			tmp1 = F(tmp1).multiply(two).add(F(tmp3).multiply(two))
					.add(tmp1.multiply(four)).subtract(four);
		map.put(n, tmp1);
		return tmp1;
	}

	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();
	}
}


HDU 4919 Exclusive or,布布扣,bubuko.com

HDU 4919 Exclusive or

标签:hdu   数学   

原文地址:http://blog.csdn.net/houserabbit/article/details/38397831

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