This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int Nmax = 2e5 + 10;
int sz;
struct node {
int to[2];
set <int> s;
} trie[Nmax * 31];
void add(int x, int ti) {
int u = 0;
for (int i = 29; i >= 0; --i) {
if (!trie[u].to[x >> i & 1]) trie[u].to[x >> i & 1] = ++sz;
u = trie[u].to[x >> i & 1];
trie[u].s.insert(ti);
}
}
int get(int x, int L, int R) {
int u = 0;
int ans = 0;
for (int i = 29; i >= 0; --i) {
auto iter = trie[trie[u].to[x >> i & 1 ^ 1]].s.lower_bound(L);
if (iter == trie[trie[u].to[x >> i & 1 ^ 1]].s.end() || *iter > R) u = trie[u].to[x >> i & 1];
else ans += (1 << i), u = trie[u].to[x >> i & 1 ^ 1];
}
return ans;
}
int q;
vector <pair <int, int> > e[Nmax];
int in[Nmax], out[Nmax], ti, d[Nmax];
void dfs(int u) {
in[u] = ++ti;
for (auto [v, w]: e[u]) {
d[v] = d[u] ^ w;
dfs(v);
}
out[u] = ti;
}
vector <tuple <string, int, int> > queries;
int main() {
ios :: sync_with_stdio(0); cin.tie(0);
cin >> q;
int n = 1;
while (q--) {
string s;
int x, y;
cin >> s >> x >> y;
if (s == "Add") ++n, e[x].push_back({n, y}), queries.push_back({s, n, y});
else queries.push_back({s, x, y});
}
dfs(1);
add(d[1], in[1]);
for (auto [s, x, y]: queries) {
if (s == "Add") add(d[x], in[x]);
else cout << get(d[x], in[y], out[y]) << '\n';
}
}
Compilation message (stderr)
klasika.cpp: In function 'int get(int, int, int)':
klasika.cpp:26:44: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
26 | auto iter = trie[trie[u].to[x >> i & 1 ^ 1]].s.lower_bound(L);
| ~~~~~~~^~~
klasika.cpp:27:44: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
27 | if (iter == trie[trie[u].to[x >> i & 1 ^ 1]].s.end() || *iter > R) u = trie[u].to[x >> i & 1];
| ~~~~~~~^~~
klasika.cpp:28:53: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
28 | else ans += (1 << i), u = trie[u].to[x >> i & 1 ^ 1];
| ~~~~~~~^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |