# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
198499 | ZwariowanyMarcin | Klasika (COCI20_klasika) | C++14 | 3356 ms | 524292 KiB |
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>
#define fi first
#define se second
#define mp make_pair
#define ss(x) (int) x.size()
#define pb push_back
#define LL long long
#define ld long double
#define cat(x) cerr << #x << " = " << x << endl
#define FOR(i, j, n) for(int i = j; i <= n; ++i)
#define boost cin.tie(0), ios_base::sync_with_stdio(0);
using namespace std;
const int nax = 200100;
const int pod = (1 << 18);
const int N = 6000100;
int q;
int t[nax];
int a[nax];
int b[nax];
int e[nax];
char s[10];
vector <int> v[nax];
int path[nax];
int tim;
int in[nax];
int out[nax];
void dfs(int u) {
in[u] = tim++;
for (auto it : v[u])
dfs(it);
out[u] = tim;
}
struct trie {
int fre = 1;
vector <int> go[2];
set <int> s[N];
void init() {
for (int i = 0; i < 2; ++i)
go[i].resize(N, 0);
}
void add(const int& nr, const int& x) {
int u = 0;
for (int i = 29; 0 <= i; --i) {
int c = ((x >> i) & 1);
if (!go[c][u])
go[c][u] = fre++;
u = go[c][u];
s[u].insert(nr);
}
}
int query(int L, int R, const int& x) {
int res = 0;
int u = 0;
for (int i = 29; 0 <= i; --i) {
int c = !((x >> i) & 1);
if (go[c][u] && s[go[c][u]].lower_bound(L) != s[go[c][u]].end() && *s[go[c][u]].lower_bound(L) <= R) {
res += 1 << i;
u = go[c][u];
}
else
u = go[!c][u];
if (!u) return 0;
}
return res;
}
} ja;
int main() {
ja.init();
scanf ("%d", &q);
int node = 2;
for (int i = 1; i <= q; ++i) {
scanf ("%s%d%d", s, a + i, b + i);
t[i] = (s[0] == 'A');
if (t[i]) {
e[i] = node;
path[node] = (path[a[i]] ^ b[i]);
v[a[i]].pb(node++);
}
}
dfs(1);
ja.add(in[1], 0);
for (int i = 1; i <= q; ++i) {
if (t[i] == 1) ja.add(in[e[i]], path[e[i]]);
else printf ("%d\n", ja.query(in[b[i]], out[b[i]] - 1, path[a[i]]));
}
return 0;
}
Compilation message (stderr)
# | 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... |