mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 15:58:48 +00:00
parent
51e252392e
commit
b1fdc7d76e
@ -1,50 +1,67 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <algorithm>
|
||||||
|
#include <iterator>
|
||||||
|
#include <limits>
|
||||||
|
#include <type_traits>
|
||||||
|
|
||||||
using std::cin;
|
using std::cin;
|
||||||
using std::cout;
|
using std::cout;
|
||||||
const char endl = '\n';
|
const char endl = '\n';
|
||||||
|
|
||||||
const int N = 55;
|
const int N = 1e5 + 5;
|
||||||
|
|
||||||
int n;
|
template <typename T>
|
||||||
long long x, a[N], ans;
|
struct LinearBasis
|
||||||
|
: std::enable_if<std::is_unsigned<T>::value, T> {
|
||||||
|
T a[std::numeric_limits<T>::digits];
|
||||||
|
|
||||||
void insert(long long x) {
|
LinearBasis() {
|
||||||
for (int i = 50; ~i; i--) {
|
std::fill(std::begin(a), std::end(a), 0);
|
||||||
if (!(x & (1ll << i))) continue;
|
}
|
||||||
|
|
||||||
|
void insert(unsigned long long x) {
|
||||||
|
for (int i = std::numeric_limits<T>::digits - 1; ~i; i--) {
|
||||||
|
if ((x >> i) & 1) {
|
||||||
if (a[i]) {
|
if (a[i]) {
|
||||||
x ^= a[i];
|
x ^= a[i];
|
||||||
} else {
|
} 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;
|
a[i] = x;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
T query() {
|
||||||
|
T res(0);
|
||||||
|
|
||||||
|
for (int i = std::numeric_limits<T>::digits - 1; ~i; i--) {
|
||||||
|
if ((res ^ a[i]) > res) res ^= a[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
std::ios::sync_with_stdio(false);
|
std::ios::sync_with_stdio(false);
|
||||||
cin.tie(nullptr);
|
cin.tie(nullptr);
|
||||||
|
|
||||||
|
int n;
|
||||||
|
LinearBasis<unsigned long long> lb;
|
||||||
|
|
||||||
cin >> n;
|
cin >> n;
|
||||||
|
|
||||||
for (int i = 1; i <= n; i++) {
|
for (int i = 1; i <= n; i++) {
|
||||||
|
unsigned long long x;
|
||||||
|
|
||||||
cin >> x;
|
cin >> x;
|
||||||
|
|
||||||
insert(x);
|
lb.insert(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i <= 50; i++) ans ^= a[i];
|
cout << lb.query() << endl;
|
||||||
|
|
||||||
cout << ans << endl;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
BIN
Luogu/P3812/data/P3812_2.in
(Stored with Git LFS)
Normal file
BIN
Luogu/P3812/data/P3812_2.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Luogu/P3812/data/P3812_2.out
(Stored with Git LFS)
Normal file
BIN
Luogu/P3812/data/P3812_2.out
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user