結果
問題 | No.2325 Skill Tree |
ユーザー | Rui |
提出日時 | 2023-05-28 14:14:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 529 ms / 3,000 ms |
コード長 | 1,728 bytes |
コンパイル時間 | 1,900 ms |
コンパイル使用メモリ | 181,484 KB |
実行使用メモリ | 15,104 KB |
最終ジャッジ日時 | 2024-06-08 05:00:53 |
合計ジャッジ時間 | 20,050 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 255 ms
5,376 KB |
testcase_08 | AC | 160 ms
8,064 KB |
testcase_09 | AC | 273 ms
6,528 KB |
testcase_10 | AC | 205 ms
11,380 KB |
testcase_11 | AC | 270 ms
9,216 KB |
testcase_12 | AC | 499 ms
15,104 KB |
testcase_13 | AC | 489 ms
14,976 KB |
testcase_14 | AC | 510 ms
14,976 KB |
testcase_15 | AC | 479 ms
15,096 KB |
testcase_16 | AC | 488 ms
14,976 KB |
testcase_17 | AC | 478 ms
15,104 KB |
testcase_18 | AC | 483 ms
15,072 KB |
testcase_19 | AC | 482 ms
15,104 KB |
testcase_20 | AC | 473 ms
15,104 KB |
testcase_21 | AC | 474 ms
14,972 KB |
testcase_22 | AC | 499 ms
14,976 KB |
testcase_23 | AC | 504 ms
15,104 KB |
testcase_24 | AC | 517 ms
15,076 KB |
testcase_25 | AC | 487 ms
14,976 KB |
testcase_26 | AC | 497 ms
15,104 KB |
testcase_27 | AC | 516 ms
14,208 KB |
testcase_28 | AC | 529 ms
14,336 KB |
testcase_29 | AC | 504 ms
14,336 KB |
testcase_30 | AC | 499 ms
14,336 KB |
testcase_31 | AC | 500 ms
14,464 KB |
testcase_32 | AC | 487 ms
14,336 KB |
testcase_33 | AC | 486 ms
14,208 KB |
testcase_34 | AC | 498 ms
14,336 KB |
testcase_35 | AC | 521 ms
14,208 KB |
testcase_36 | AC | 520 ms
14,336 KB |
testcase_37 | AC | 511 ms
14,464 KB |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/all> using namespace std; //using namespace atcoder; typedef long long ll; //typedef modint1000000007 mint; const int MOD = 1000000007; #define all(x) x.begin(), x.end() #define rep(i, n) for (int i = 0; i < (int)(n); i++) const int inf = 1 << 30; const ll INF = 1LL << 60; const int dx[8] = {1, 0, -1, 0, -1, -1, 1, 1}; const int dy[8] = {0, 1, 0, -1, -1, 1, -1, 1}; template <class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } int main(){ int n; cin >> n; vector<int> l(n), a(n); rep(i, n - 1) cin >> l[i + 1] >> a[i + 1]; vector<vector<int>> g(n); rep(i, n - 1) g[a[i + 1] - 1].push_back(i + 1); vector<bool> seen(n, false); vector<int> level(n, inf); seen[0] = true; level[0] = 0; queue<int> que; que.push(0); while(!que.empty()){ int v = que.front(); que.pop(); for(auto u : g[v]){ if(!seen[u]){ seen[u] = true; level[u] = max(l[u], level[v]); que.push(u); } } } vector<int> level2 = level; sort(all(level2)); //rep(i, n) cout << level2[i] << endl; int q; cin >> q; while(q--){ int num, x, y; cin >> num; if(num == 1){ cin >> x; auto it = upper_bound(all(level2), x); cout << it - level2.begin() << endl; } if(num == 2){ cin >> y; if(level[y - 1] == inf) cout << -1 << endl; else cout << level[y - 1] << endl; } } return 0; }