记录编号 204811 评测结果 AAAAAAAAAA
题目名称 平凡的数据范围 最终得分 100
用户昵称 Gravatarpppoooiiizzy 是否通过 通过
代码语言 C++ 运行时间 0.013 s
提交时间 2015-11-04 17:00:58 内存使用 0.39 MiB
显示代码纯文本
#include<cstdio>
#include<deque>
#include<iostream>
using namespace std;
typedef long long LL;
const int SIZEN=10010;
int N;
LL f[SIZEN]={0};
LL ans=0;
deque<LL> Q;
bool check(LL x,int y)//当前位是否为1
{
	int temp;
	temp=x>>(y-1);
	return temp&1;
}
void read()
{
	int i;
	scanf("%d",&N);
	for(i=1;i<=N;i++) scanf("%lld",&f[i]);
}
void work()
{
	for(int k=63;k>=1;k--)
	{
		Q.clear();
		for(int i=1;i<=N;i++)
		{
			if(check(f[i],k))
			{
				Q.push_back(i);
			}
		}
		if(Q.empty()) continue;
		LL now=f[Q[0]];
		//cout<<now<<endl;
		if(!check(ans,k)) ans^=now;
		for(int i=0;i<Q.size();i++)
		{
			int v=Q[i];
			f[v]^=now;
		}
	}
	printf("%lld",ans);
}
int main()
{
	freopen("xor_equ.in","r",stdin);
	freopen("xor_equ.out","w",stdout);
	read();
	work();
	return 0;
}