結果
問題 | No.2325 Skill Tree |
ユーザー | hiikunZ |
提出日時 | 2023-05-28 13:44:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 510 ms / 3,000 ms |
コード長 | 1,399 bytes |
コンパイル時間 | 3,868 ms |
コンパイル使用メモリ | 234,652 KB |
実行使用メモリ | 24,264 KB |
最終ジャッジ日時 | 2024-06-08 04:05:36 |
合計ジャッジ時間 | 20,129 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 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
6,944 KB |
testcase_07 | AC | 204 ms
6,016 KB |
testcase_08 | AC | 134 ms
11,904 KB |
testcase_09 | AC | 223 ms
9,088 KB |
testcase_10 | AC | 171 ms
17,780 KB |
testcase_11 | AC | 229 ms
13,568 KB |
testcase_12 | AC | 428 ms
24,192 KB |
testcase_13 | AC | 435 ms
24,180 KB |
testcase_14 | AC | 435 ms
24,180 KB |
testcase_15 | AC | 438 ms
24,136 KB |
testcase_16 | AC | 439 ms
24,264 KB |
testcase_17 | AC | 441 ms
24,192 KB |
testcase_18 | AC | 431 ms
24,192 KB |
testcase_19 | AC | 424 ms
24,176 KB |
testcase_20 | AC | 421 ms
24,064 KB |
testcase_21 | AC | 444 ms
24,144 KB |
testcase_22 | AC | 438 ms
24,192 KB |
testcase_23 | AC | 440 ms
24,120 KB |
testcase_24 | AC | 425 ms
24,092 KB |
testcase_25 | AC | 425 ms
24,192 KB |
testcase_26 | AC | 420 ms
24,128 KB |
testcase_27 | AC | 503 ms
23,348 KB |
testcase_28 | AC | 497 ms
23,424 KB |
testcase_29 | AC | 494 ms
23,296 KB |
testcase_30 | AC | 493 ms
23,340 KB |
testcase_31 | AC | 499 ms
23,424 KB |
testcase_32 | AC | 491 ms
23,600 KB |
testcase_33 | AC | 491 ms
23,424 KB |
testcase_34 | AC | 497 ms
23,424 KB |
testcase_35 | AC | 492 ms
23,460 KB |
testcase_36 | AC | 485 ms
23,848 KB |
testcase_37 | AC | 510 ms
23,464 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> using namespace std; using ll = long long int; using ull = unsigned long long int; using ld = long double; const ll MAX = 1e18; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll N; cin >> N; vector<vector<ll>> G(N),C(N); for(ll i = 1;i < N;i++){ ll l,a; cin >> l >> a; a--; G[a].emplace_back(i); C[a].emplace_back(l); } vector<ll> memo(N,MAX); priority_queue<tuple<ll,ll>,vector<tuple<ll,ll>>,greater<tuple<ll,ll>>> que; que.emplace(0,0); while(!que.empty()){ ll cost,now; tie(cost,now) = que.top(); que.pop(); if(memo[now] == MAX){ memo[now] = cost; for(ll i = 0;i < G[now].size();i++){ que.emplace(max(cost,C[now][i]),G[now][i]); } } } vector<ll> memo2 = memo; sort(memo2.begin(),memo2.end()); ll Q; cin >> Q; for(ll i = 0;i < Q;i++){ ll t,x; cin >> t >> x; if(t == 1){ ll ans = upper_bound(memo2.begin(),memo2.end(),x) - memo2.begin(); cout << ans << endl; } else{ ll ans = memo[x - 1]; if(ans == MAX) cout << -1 << endl; else cout << ans << endl; } } }