forked from HHMoon13/CodeLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDSU on tree.cpp
104 lines (72 loc) · 1.69 KB
/
DSU on tree.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include<bits/stdc++.h>
using namespace std;
const int maxn = 100005;
typedef pair<int, int> pii;
int sz[maxn], res[maxn];
int cnt[maxn], color[maxn], ck[maxn];
bool heavy[maxn];
vector<int> g[maxn];
vector<pii> query[maxn];
void countSize(int u, int par, int dep){
sz[u] = 1;
for(auto v: g[u]){
if(v != par){
countSize(v, u, dep+1);
sz[u] += sz[v];
}
}
}
void add(int u, int par, int x){
cnt[color[u]] += x;
ck[ cnt[color[u]] ] += x;
for(auto v:g[u]){
if(v!= par && !heavy[v]){
add(v, u, x);
}
}
}
void dfs(int u, int par, bool keep){
int mx = -1, heavyChild = -1;
for(auto v : g[u]){
if(v==par) continue;
if(sz[v]>mx){
mx = sz[v];
heavyChild = v;
}
}
for(auto v : g[u]){
if(v != par && v != heavyChild){
dfs(v, u, 0);
}
}
if(heavyChild != -1) {
dfs(heavyChild, u, 1);
heavy[heavyChild] = 1;
}
add(u, par, 1);
for(auto vv : query[u]) {
res[vv.second] = ck[vv.first];
}
if(heavyChild != -1) heavy[heavyChild] = 0;
if(keep == 0){
add(u, par, -1);
}
}
int main(){
int n, m, x, y, v, k;
scanf("%d %d", &n, &m);
for(int i = 1; i<=n; i++) scanf("%d", &color[i]);
for(int i = 1; i<n; i++){
scanf("%d %d", &x, &y);
g[x].push_back(y);
g[y].push_back(x);
}
for(int i = 1; i<=m; i++) {
cin>>v>>k;
query[v].push_back(make_pair(k, i));
}
countSize(1, -1, 0);
dfs(1, -1, 0);
for(int i = 1; i<=m; i++) printf("%d\n", res[i]);
return 0;
}