#include <iostream>
#include <vector>
#include <utility>
#include <map>
#include <cmath>
#include <algorithm>
using namespace std;
int N, SQ;
int R, Q;
int cnt[25005];
int cpx[25005];
int region[200005], par[200005];
int s[200005], e[200005];
int dp[200005][500];
vector<int> g[200005];
vector<int> exceed;
vector<int> ett;
void dfs(int v)
{
s[v] = (int)ett.size() + 1;
ett.push_back(v);
for (auto &i:g[v]) dfs(i);
e[v] = (int)ett.size() - 1;
}
void dfs2(int v, int p)
{
int loc = -1;
if (cnt[region[v]] > SQ) loc = cpx[region[v]];
for (int i = 0; i < (int)exceed.size(); i++) {
dp[v][i] = dp[p][i] + (i == loc);
}
for (auto &i:g[v]) dfs2(i, v);
}
vector<int> pos[25005];
vector<int> member[25005];
int main()
{
cin >> N >> R >> Q;
SQ = sqrt(N);
fill(cpx, cpx + 25005, -1);
for (int i = 1; i <= N; i++) {
if (i >= 2) cin >> par[i], g[par[i]].push_back(i);
cin >> region[i];
member[region[i]].push_back(i);
cnt[region[i]]++;
}
dfs(1);
for (int i = 0; i < N; i++) {
pos[region[ett[i]]].push_back(i);
}
for (int i = 1; i <= R; i++) {
if (cnt[i] > SQ) exceed.push_back(i);
}
for (int k = 0; k < (int)exceed.size(); k++) cpx[exceed[k]] = k;
dfs2(1, 0);
map<pair<int, int>, int> res;
while (Q--) {
int r1, r2; cin >> r1 >> r2;
int ans = 0;
if (cnt[r1] <= SQ) {
for (int &i:member[r1]) {
//r2 색 중 i의 서브트리 내부에들어오는 것 개수
int st = lower_bound(pos[r2].begin(), pos[r2].end(), s[i]) - pos[r2].begin();
int en = upper_bound(pos[r2].begin(), pos[r2].end(), e[i]) - pos[r2].begin();
--en;
ans += (en - st + 1);
}
}
else {
bool flag = false;
if (cnt[r2] > SQ) {
int tmp = res[make_pair(r1, r2)];
if (tmp > 0) ans = tmp - 1, flag = true;
}
if (!flag) {
for (int &i:member[r2]) {
ans += dp[par[i]][cpx[r1]];
}
if (cnt[r2] > SQ) res[make_pair(r1, r2)] = ans + 1;
}
}
cout << ans << '\n';
cout.flush();
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
6224 KB |
Output is correct |
2 |
Correct |
3 ms |
6224 KB |
Output is correct |
3 |
Correct |
5 ms |
6224 KB |
Output is correct |
4 |
Correct |
6 ms |
6224 KB |
Output is correct |
5 |
Correct |
10 ms |
6224 KB |
Output is correct |
6 |
Correct |
17 ms |
6352 KB |
Output is correct |
7 |
Correct |
24 ms |
6352 KB |
Output is correct |
8 |
Correct |
30 ms |
6352 KB |
Output is correct |
9 |
Correct |
52 ms |
6864 KB |
Output is correct |
10 |
Correct |
83 ms |
6944 KB |
Output is correct |
11 |
Correct |
116 ms |
7248 KB |
Output is correct |
12 |
Correct |
149 ms |
7724 KB |
Output is correct |
13 |
Correct |
125 ms |
7504 KB |
Output is correct |
14 |
Correct |
241 ms |
66748 KB |
Output is correct |
15 |
Correct |
308 ms |
88976 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
99 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Runtime error |
108 ms |
131072 KB |
Execution killed with signal 9 |
3 |
Runtime error |
98 ms |
131072 KB |
Execution killed with signal 9 |
4 |
Correct |
189 ms |
8148 KB |
Output is correct |
5 |
Correct |
406 ms |
9900 KB |
Output is correct |
6 |
Correct |
596 ms |
111308 KB |
Output is correct |
7 |
Runtime error |
109 ms |
131072 KB |
Execution killed with signal 9 |
8 |
Runtime error |
117 ms |
131072 KB |
Execution killed with signal 9 |
9 |
Correct |
2301 ms |
16988 KB |
Output is correct |
10 |
Runtime error |
164 ms |
131072 KB |
Execution killed with signal 9 |
11 |
Correct |
4918 ms |
17152 KB |
Output is correct |
12 |
Runtime error |
221 ms |
131072 KB |
Execution killed with signal 9 |
13 |
Runtime error |
178 ms |
131072 KB |
Execution killed with signal 9 |
14 |
Runtime error |
242 ms |
131072 KB |
Execution killed with signal 9 |
15 |
Runtime error |
193 ms |
131072 KB |
Execution killed with signal 9 |
16 |
Runtime error |
174 ms |
131072 KB |
Execution killed with signal 9 |
17 |
Runtime error |
172 ms |
131072 KB |
Execution killed with signal 9 |