0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 19:45:24 +00:00

3261. 最大异或和

https://hydro.ac/d/bzoj/record/63aef6944f9fff2019e2eb61
This commit is contained in:
Baoshuo Ren 2022-12-30 22:33:06 +08:00
parent 6ebb77da77
commit 024dd9b809
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

87
BZOJ/3261/3261.cpp Normal file
View File

@ -0,0 +1,87 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 6e5 + 5;
int n, m, sum;
int cnt, tot, root[N], lst[N], tr[N << 5][2], siz[N << 5];
void insert(int val) {
root[++tot] = ++cnt;
int l = root[tot - 1], r = root[tot];
for (int i = 30; i >= 0; i--) {
bool x = val >> i & 1;
tr[r][x ^ 1] = tr[l][x ^ 1];
tr[r][x] = ++cnt;
l = tr[l][x];
r = tr[r][x];
siz[r] = siz[l] + 1;
}
lst[tot] = cnt;
}
int query(int l, int r, int val) {
int res = 0;
l = root[l], r = root[r];
for (int i = 30; i >= 0; i--) {
bool x = val >> i & 1;
if (siz[tr[r][x ^ 1]] > siz[tr[l][x ^ 1]]) {
res |= 1 << i;
x = x ^ 1;
}
l = tr[l][x];
r = tr[r][x];
}
return res;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m;
insert(0);
for (int i = 1, x; i <= n; i++) {
cin >> x;
insert(sum ^= x);
}
while (m--) {
char op;
cin >> op;
if (op == 'A') {
int x;
cin >> x;
insert(sum ^= x);
} else { // op == 'Q'
int l, r, x;
cin >> l >> r >> x;
cout << query(l - 1, r, x ^ sum) << endl;
}
}
return 0;
}