mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-27 19:36:28 +00:00
parent
c582e56ee3
commit
08dbbe056d
50
Luogu/P3812/P3812.cpp
Normal file
50
Luogu/P3812/P3812.cpp
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using std::cin;
|
||||||
|
using std::cout;
|
||||||
|
const char endl = '\n';
|
||||||
|
|
||||||
|
const int N = 55;
|
||||||
|
|
||||||
|
int n;
|
||||||
|
long long x, a[N], ans;
|
||||||
|
|
||||||
|
void insert(long long x) {
|
||||||
|
for (int i = 50; ~i; i--) {
|
||||||
|
if (!(x & (1ll << i))) continue;
|
||||||
|
|
||||||
|
if (a[i]) {
|
||||||
|
x ^= a[i];
|
||||||
|
} else {
|
||||||
|
for (int k = 0; k < i; k++) {
|
||||||
|
if (x & (1ll << k)) x ^= a[k];
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int k = i + 1; k <= 50; k++) {
|
||||||
|
if (a[k] & (1ll << i)) a[k] ^= x;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[i] = x;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::ios::sync_with_stdio(false);
|
||||||
|
cin.tie(nullptr);
|
||||||
|
|
||||||
|
cin >> n;
|
||||||
|
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
cin >> x;
|
||||||
|
|
||||||
|
insert(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i <= 50; i++) ans ^= a[i];
|
||||||
|
|
||||||
|
cout << ans << endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user