結果
問題 | No.2325 Skill Tree |
ユーザー | gyozasukisuki |
提出日時 | 2023-05-28 15:28:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,564 bytes |
コンパイル時間 | 2,989 ms |
コンパイル使用メモリ | 216,404 KB |
実行使用メモリ | 233,612 KB |
最終ジャッジ日時 | 2024-06-08 07:51:45 |
合計ジャッジ時間 | 21,879 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 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 | 1 ms
5,376 KB |
testcase_07 | AC | 272 ms
10,256 KB |
testcase_08 | AC | 220 ms
16,128 KB |
testcase_09 | AC | 354 ms
25,888 KB |
testcase_10 | AC | 313 ms
59,112 KB |
testcase_11 | AC | 297 ms
18,560 KB |
testcase_12 | AC | 567 ms
34,432 KB |
testcase_13 | AC | 566 ms
34,560 KB |
testcase_14 | AC | 668 ms
83,328 KB |
testcase_15 | AC | 2,435 ms
191,208 KB |
testcase_16 | AC | 550 ms
24,576 KB |
testcase_17 | AC | 545 ms
24,704 KB |
testcase_18 | AC | 547 ms
34,432 KB |
testcase_19 | AC | 542 ms
24,576 KB |
testcase_20 | AC | 850 ms
102,964 KB |
testcase_21 | AC | 534 ms
24,704 KB |
testcase_22 | AC | 573 ms
34,432 KB |
testcase_23 | AC | 672 ms
63,684 KB |
testcase_24 | AC | 563 ms
34,432 KB |
testcase_25 | AC | 558 ms
24,576 KB |
testcase_26 | AC | 584 ms
34,432 KB |
testcase_27 | TLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/all> //using namespace atcoder; using namespace std; const int INF = 1e9; using ll = long long; using inv = vector<int>; using stv = vector<string>; using pint = pair<int,int>; #define FOR(i,l,r) for(int i=(l); i<(r); i++) #define rep(i,r) for(int i=0; i<(r); i++) #define repl(i,r) for(long long i=0; i<(r); i++) #define FORl(i,l,r) for(long long i=(l); i<(r); i++) #define INFL ((1LL<<62)-(1LL<<31)) #define pb(x) push_back(x) #define CIN(x) cin >> x // to and cost using Graph = vector<vector<pair<ll,ll>>>; void dfs(Graph G,int v,ll nowlv, vector<ll> &lv, vector<bool> &seen){ seen[v] = true; lv[v] = nowlv; if(G[v].size() == 0) return; for(auto [nexv,l] : G[v]){ if(seen[nexv]) continue; dfs(G,nexv,(nowlv > l ? nowlv:l),lv,seen); } } int main(){ ll N; cin >> N; Graph G(N,vector<pair<ll,ll>>()); vector<ll> minl(N,-1LL); vector<bool> seen(N,false); seen[0] = true; rep(i,N-1){ ll L,A; cin >> L >> A; A--; G[A].pb(make_pair(i+1,L)); } dfs(G,0,1,minl,seen); // rep(i,N) cout << minl[i] << " "; // cout<< endl; vector<ll> smin; smin = minl; sort(smin.begin(),smin.end()); ll cnt = count(smin.begin(),smin.end(),-1); ll Q; cin >> Q; rep(q,Q){ int t; cin >> t; if(t == 1){ ll x; cin >> x; ll ans= (ll)(upper_bound(smin.begin(),smin.end(),x)-smin.begin()); ans -= cnt; cout << ans << endl; }else{ int y; cin >> y; y--; cout << minl[y] << endl; } } }