mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 02:18:48 +00:00
parent
c8cbda6669
commit
ec9fe743da
34
S2OJ/159/159.cpp
Normal file
34
S2OJ/159/159.cpp
Normal file
@ -0,0 +1,34 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int n;
|
||||
long long t, ans, p[60];
|
||||
|
||||
void insert(long long x) {
|
||||
for (int i = 50; i >= 0; i--) {
|
||||
if (x & (1ll << i)) {
|
||||
if (!p[i]) {
|
||||
p[i] = x;
|
||||
break;
|
||||
} else {
|
||||
x ^= p[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int main() {
|
||||
cin >> n;
|
||||
for (int i = 1; i <= n; i++) {
|
||||
cin >> t;
|
||||
insert(t);
|
||||
}
|
||||
for (int i = 50; i >= 0; i--) {
|
||||
if ((ans ^ p[i]) > ans) {
|
||||
ans ^= p[i];
|
||||
}
|
||||
}
|
||||
cout << ans << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user