记录编号 |
355260 |
评测结果 |
AAAAAAAAAA |
题目名称 |
平凡的数据范围 |
最终得分 |
100 |
用户昵称 |
sxysxy |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.009 s |
提交时间 |
2016-11-24 08:14:30 |
内存使用 |
0.69 MiB |
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <string>
#include <cstdarg>
#include <queue>
#include <vector>
#include <list>
#include <algorithm>
#include <cctype>
using namespace std;
char buf[1<<18], *fs, *ft;
inline char readc()
{
return (fs==ft&&(ft=(fs=buf)+fread(buf,1,1<<18,stdin),fs==ft))?0:*fs++;
}
typedef long long LL;
inline LL fast_read()
{
LL r;
char c;
bool sig = false;
while(c = readc())
{
if(c >= '0' && c <= '9')
{
r = c^0x30;
break;
}else if(c == '-')sig = true;
}
while(isdigit(c = readc()))
r = (r<<3)+(r<<1)+(c^0x30);
return sig?-r:r;
}
LL ans, data[10002], tmp[10002];
int main()
{
freopen("xor_equ.in", "r", stdin);
freopen("xor_equ.out", "w", stdout);
int n = fast_read();
for(int i = 1; i <= n; i++)data[i] = fast_read();
for(int i = 63; i >= 0; i--)
{
tmp[0] = 0;
tmp[1] = 1;
for(int j = 1;j <= n; j++)
if(data[j]>>i&1)tmp[++tmp[0]] = j;
if(!(ans>>i&1))ans ^= data[tmp[1]];
for(int j = tmp[0]; j > 0; j--)
data[tmp[j]] ^= data[tmp[1]];
}
printf("%lld\n", ans);
return 0;
}