# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
53629 | baactree | Regions (IOI09_regions) | C++17 | 7513 ms | 79328 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, r, q;
vector<int> adj[200005];
int arr[200005];
const int sz = 467;
int cache[sz][25005];
pair<int,int> cnt[25005];
int inv[25005];
int le[200005], ri[200005];
vector<int> idx[25005];
vector<pair<int, int> > vec[25005];
int vn;
void dfs(int now, int par) {
idx[arr[now]].push_back(vn);
le[now] = vn++;
for (auto &there : adj[now]) {
if (there == par)continue;
dfs(there, now);
}
ri[now] = vn++;
vec[arr[now]].emplace_back(le[now], ri[now]);
}
int solve(int r1, int r2) {
int &ret = cache[inv[r1]][r2];
if (ret != -1) return ret;
ret = 0;
for (auto x : vec[r1]) {
int le = x.first;
int ri = x.second;
ret += upper_bound(idx[r2].begin(), idx[r2].end(), ri) - lower_bound(idx[r2].begin(), idx[r2].end(), le);
}
return ret;
}
int main() {
scanf("%d%d%d", &n, &r, &q);
scanf("%d", &arr[1]);
cnt[arr[1]].first++;
for (int i = 2; i <= n; i++) {
int a, b;
scanf("%d%d", &a, &b);
adj[a].push_back(i);
adj[i].push_back(a);
arr[i] = b;
cnt[arr[i]].first++;
}
for (int i = 0; i < 25005; i++)
cnt[i].second = i;
sort(cnt, cnt + 25005, [&](pair<int, int> &a, pair<int, int> &b) {
return a > b;
});
for (int i = 0; i < 25005; i++)
inv[cnt[i].second] = i;
dfs(1, 0);
memset(cache, -1, sizeof(cache));
while (q--) {
int a, b;
scanf("%d%d", &a, &b);
if (inv[a] < sz) {
printf("%d\n", solve(a,b));
fflush(stdout);
}
else {
int ans = 0;
for (auto x : vec[a]) {
int le = x.first;
int ri = x.second;
ans += upper_bound(idx[b].begin(), idx[b].end(), ri) - lower_bound(idx[b].begin(), idx[b].end(), le);
}
printf("%d\n", ans);
fflush(stdout);
}
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |