제출 #840412

#제출 시각아이디문제언어결과실행 시간메모리
840412mat_jurRegions (IOI09_regions)C++17
55 / 100
8069 ms46628 KiB
#include <bits/stdc++.h> using namespace std; #ifdef DEBUG auto&operator<<(auto &o, pair<auto, auto> p) {o << "(" << p.first << ", " << p.second << ")"; return o;} auto operator<<(auto &o, auto x)->decltype(x.end(), o) {o<<"{"; for(auto e : x) o<<e<<", "; return o<<"}";} #define debug(X) cerr << "["#X"]: " << X << '\n'; #else #define debug(X) ; #endif #define ll long long #define all(v) (v).begin(), (v).end() #define FOR(i,l,r) for(int i=(l);i<=(r);++i) #define ROF(i,r,l) for(int i=(r);i>=(l);--i) #define REP(i,n) FOR(i,0,(n)-1) #define ssize(x) int(x.size()) #define fi first #define se second #define eb emplace_back void brut1(int n, int r, int q) { vector<int> h(n); cin >> h[0]; h[0]--; vector G(n, vector(0, 0)); FOR(i, 1, n-1) { int p; cin >> p >> h[i]; p--; h[i]--; G[p].eb(i); G[i].eb(p); } auto merge = [&](vector<int> &a, vector<int> &b) { REP(i, r) a[i] += b[i]; return; }; vector ans(r, vector(r, 0ll)); function<vector<int>(int, int)> dfs = [&](int v, int p) { vector<int> cnt(r); for(auto w : G[v]) { if (w == p) continue; vector<int> b = dfs(w, v); merge(cnt, b); } REP(i, r) ans[h[v]][i] += cnt[i]; cnt[h[v]]++; return cnt; }; dfs(0, -1); REP(i, q) { int r1, r2; cin >> r1 >> r2; r1--; r2--; cout << ans[r1][r2] << '\n'; cout.flush(); } }; int main () { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, r, q; cin >> n >> r >> q; if (r <= 500) {brut1(n, r, q); return 0;} vector<int> h(n); vector G(n, vector(0, 0)), wyst(r, vector(0, 0)); cin >> h[0]; h[0]--; wyst[h[0]].eb(0); FOR(i, 1, n-1) { int p; cin >> p >> h[i]; p--; h[i]--; wyst[h[i]].eb(i); G[p].eb(i); G[i].eb(p); } vector<int> start(n), end(n); int timer = 0; function<void(int, int)> dfs = [&](int v, int p) { start[v] = timer++; for(auto w : G[v]) { if (w == p) continue; dfs(w, v); } end[v] = timer-1; }; dfs(0, -1); REP(j, q) { int r1, r2; cin >> r1 >> r2; r1--; r2--; vector<int> a(n, 0); for (auto v : wyst[r2]) { a[start[v]]++; } auto get = [&](int idx) { if (idx < 0) return 0; return a[idx]; }; REP(i, n) a[i] += get(i-1); ll ans = 0; for (auto v : wyst[r1]) { ans += a[end[v]] - get(start[v]-1); } cout << ans << '\n'; cout.flush(); } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...