Submission #310361

#TimeUsernameProblemLanguageResultExecution timeMemory
310361shivensinha4Regions (IOI09_regions)C++17
100 / 100
7776 ms37464 KiB
#include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; #include <bits/stdc++.h> using namespace std; #define for_(i, s, e) for (int i = s; i < (int) e; i++) #define for__(i, s, e) for (ll i = s; i < e; i++) typedef long long ll; typedef vector<int> vi; typedef pair<int, int> ii; //#define endl '\n' const int MXN = 200000, MXR = 25000, INF = 1e9+1; int n, r, q; int reg[MXN+1], tin[MXN+1], tout[MXN+1], pt = 0; vi adj[MXN+1]; vi regList[MXR+1], regListId[MXR+1]; gp_hash_table<int, int> seen[MXR+1]; void dfs(int p, int parent) { regList[reg[p]].push_back(pt); regListId[reg[p]].push_back(p); tin[p] = pt++; for (int i: adj[p]) if (i != parent) dfs(i, p); tout[p] = pt-1; } int main() { #ifdef shiven freopen("test.in", "r", stdin); #endif ios_base::sync_with_stdio(false); cin.tie(0); cin >> n >> r >> q; cin >> reg[0]; reg[0] -= 1; for_(i, 1, n) { int p; cin >> p >> reg[i]; reg[i] -= 1; adj[p-1].push_back(i); } dfs(0, 0); while (q--) { int r1, r2; cin >> r1 >> r2; r1 -= 1; r2 -= 1; if (seen[r1].find(r2) != seen[r1].end()) { cout << seen[r1][r2] << endl; continue; } int ans = 0; for (auto i: regListId[r1]) ans += upper_bound(regList[r2].begin(), regList[r2].end(), tout[i]) - lower_bound(regList[r2].begin(), regList[r2].end(), tin[i]+1); cout << ans << endl; seen[r1][r2] = ans; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...