比赛 |
平凡的题目 |
评测结果 |
AAAAAAAAAA |
题目名称 |
平凡的数据范围 |
最终得分 |
100 |
用户昵称 |
mikumikumi |
运行时间 |
0.013 s |
代码语言 |
C++ |
内存使用 |
0.44 MiB |
提交时间 |
2015-11-03 11:37:22 |
显示代码纯文本
#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;
}