摘要: http://codeforces.com/contest/251/problem/D 很有意思的一个数学题,给你n个数字要你将其分成A,B两组,使得两组所有数字分别xor起来,得到A‘,B’时,A+B最大。多解时候使得A最小。 先贴程序。。。。吃饭先View Code 1 //By Lin 2 #include<cstdio> 3 #include<cstring> 4 #define maxn 100050 5 using namespace std; 6 typedef long long LL; 7 int n; 8 LL data[maxn],input... 阅读全文
posted @ 2012-12-10 17:28 lzqxh 阅读(330) 评论(0) 推荐(0) 编辑