mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 12:58:48 +00:00
210. 异或运算
https://www.acwing.com/problem/content/submission/code_detail/14620640/
This commit is contained in:
parent
74f0ad0207
commit
49974f4d4a
78
AcWing/210/210.cpp
Normal file
78
AcWing/210/210.cpp
Normal file
@ -0,0 +1,78 @@
|
||||
#include <iostream>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
const int N = 65;
|
||||
|
||||
int t, n, m, cnt;
|
||||
unsigned long long x, k, a[N], p[N], ans;
|
||||
|
||||
inline void insert(unsigned long long x) {
|
||||
for (int i = 60; ~i; i--) {
|
||||
if (x & (1ull << i)) {
|
||||
if (a[i]) {
|
||||
x ^= a[i];
|
||||
} else {
|
||||
for (int k = 0; k < i; k++) {
|
||||
if (x & (1ull << k)) x ^= a[k];
|
||||
}
|
||||
|
||||
for (int k = i + 1; k <= 60; k++) {
|
||||
if (a[k] & (1ull << i)) a[k] ^= x;
|
||||
}
|
||||
|
||||
a[i] = x;
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
cin.tie(nullptr);
|
||||
|
||||
cin >> t;
|
||||
|
||||
for (int c = 1; c <= t; c++) {
|
||||
cout << "Case #" << c << ":" << endl;
|
||||
|
||||
cnt = 0;
|
||||
std::fill(a, a + 62, 0);
|
||||
|
||||
cin >> n;
|
||||
|
||||
for (int i = 1; i <= n; i++) {
|
||||
cin >> x;
|
||||
|
||||
insert(x);
|
||||
}
|
||||
|
||||
for (int i = 0; i <= 60; i++) {
|
||||
if (a[i]) p[cnt++] = a[i];
|
||||
}
|
||||
|
||||
cin >> m;
|
||||
|
||||
while (m--) {
|
||||
cin >> k;
|
||||
|
||||
if (cnt != n) k--;
|
||||
|
||||
if (k >= (1ull << cnt)) {
|
||||
cout << -1 << endl;
|
||||
} else {
|
||||
ans = 0;
|
||||
|
||||
for (int i = 0; i < cnt; i++) {
|
||||
if (k & (1ull << i)) ans ^= p[i];
|
||||
}
|
||||
|
||||
cout << ans << endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user