-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdmopc17c5p5.cpp
82 lines (66 loc) · 1.5 KB
/
dmopc17c5p5.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Ivan Carvalho
// Solution to https://dmoj.ca/problem/dmopc17c5p5
#include <bits/stdc++.h>
using namespace std;
typedef vector<int> vi;
const int MAXN = 2 * 1e5 + 10;
const int MAXL = 30;
int pai[MAXN], val[MAXN], N, M, Q;
int find(int x) {
// printf("Find %d\n",x);
if (x == pai[x]) return x;
return pai[x] = find(pai[x]);
}
void join(int x, int y) {
// printf("JOIN %d %d\n",x,y);
x = find(x);
y = find(y);
if (x == y) return;
if (x > y) swap(x, y);
pai[y] = x;
}
void build(vi &S, int k) {
if (k < 0 || S.empty()) return;
// printf("BUILD %d com |S| %d\n",k,(int)S.size());
int kth_bit = (M & (1 << k)) != 0;
vi L, R;
for (int i = 0; i < S.size(); i++) {
int j = S[i];
if (val[j] & (1 << k))
R.push_back(j);
else
L.push_back(j);
}
if (kth_bit == 1) {
for (int i = 1; i < L.size(); i++) {
join(L[0], L[i]);
}
for (int i = 1; i < R.size(); i++) {
join(R[0], R[i]);
}
build(S, k - 1);
return;
}
build(L, k - 1);
build(R, k - 1);
}
int main() {
scanf("%d %d %d", &N, &M, &Q);
M++;
vi G;
for (int i = 1; i <= N; i++) {
scanf("%d", &val[i]);
pai[i] = i;
G.push_back(i);
}
build(G, MAXL);
while (Q--) {
int u, v;
scanf("%d %d", &u, &v);
if (find(u) == find(v))
printf("YES\n");
else
printf("NO\n");
}
return 0;
}