結果
問題 | No.2325 Skill Tree |
ユーザー | nao109 |
提出日時 | 2023-05-28 15:53:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,196 bytes |
コンパイル時間 | 2,692 ms |
コンパイル使用メモリ | 217,208 KB |
実行使用メモリ | 21,248 KB |
最終ジャッジ日時 | 2024-06-08 08:46:41 |
合計ジャッジ時間 | 15,512 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define fi first #define se second int dfs(vector<vector<int>> &g, vector<bool> &seen, vector<int> &l, int v){ seen[v] = true; int res = l[v]; for(int nv : g[v]){ if(!seen[nv]) res = max(res, dfs(g, seen, l, nv)); else res = (int)2e9; } return res; } int main(){ int n; cin >> n; vector<int> l(n); l[0] = 0; vector<vector<int>> g(n); for(int i = 1; i < n; i++){ cin >> l[i]; int a; cin >> a; g[i].push_back(a - 1); } vector<int> lmax(n, -1); lmax[0] = 1; vector<bool> seen(n, false); for(int i = 1; i < n; i++){ seen.assign(n, false); lmax[i] = dfs(g, seen, l, i); } map<int, int> level; for(int i = 0; i < n; i++) level[lmax[i]]++; vector<int> kinds((int)1e9 + 1); kinds[1] = 1; for(int i = 2; i <= (int)1e9; i++){ kinds[i] = kinds[i - 1] + level[i]; } int q; cin >> q; while(q--){ int k, xy; cin >> k >> xy; if(k == 1) cout << kinds[xy] << endl; if(k == 2) cout << lmax[xy - 1] << endl; } return 0; }