結果
問題 | No.2325 Skill Tree |
ユーザー | FplusFplusF |
提出日時 | 2023-05-28 14:23:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,337 bytes |
コンパイル時間 | 2,469 ms |
コンパイル使用メモリ | 212,812 KB |
実行使用メモリ | 15,412 KB |
最終ジャッジ日時 | 2024-06-08 05:17:15 |
合計ジャッジ時間 | 8,372 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 35 ms
7,552 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 51 ms
8,448 KB |
testcase_12 | AC | 109 ms
13,720 KB |
testcase_13 | AC | 99 ms
13,748 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 102 ms
13,688 KB |
testcase_17 | AC | 94 ms
13,708 KB |
testcase_18 | AC | 95 ms
13,740 KB |
testcase_19 | AC | 94 ms
13,732 KB |
testcase_20 | AC | 100 ms
13,708 KB |
testcase_21 | AC | 98 ms
13,708 KB |
testcase_22 | AC | 108 ms
13,760 KB |
testcase_23 | WA | - |
testcase_24 | AC | 112 ms
13,788 KB |
testcase_25 | AC | 101 ms
13,708 KB |
testcase_26 | AC | 108 ms
13,680 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 109 ms
15,288 KB |
testcase_33 | AC | 115 ms
15,272 KB |
testcase_34 | AC | 112 ms
15,404 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; const ll INF=(1ll<<60); #define rep(i,n) for (ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } vector<vector<ll>> g; vector<ll> l; vector<bool> vis; void dfs(ll x,ll m){ for(auto &i:g[x]){ if(vis[i]) continue; vis[i]=true; chmax(l[i],m); dfs(i,l[i]); } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll n; cin >> n; g.resize(n); l.resize(n); l[0]=1; rep(i,n-1){ ll a; cin >> l[i+1] >> a; a--; g[a].push_back(i+1); } vis.resize(n,false); vis[0]=true; dfs(0,1); vector<ll> v; rep(i,n){ if(!vis[i]) continue; v.push_back(l[i]); } ll q; cin >> q; while(q--){ ll t; cin >> t; if(t==1){ ll x; cin >> x; cout << (ll)(upper_bound(all(v),x)-v.begin()) << '\n'; } if(t==2){ ll y; cin >> y; y--; if(!vis[y]) cout << "-1\n"; else cout << l[y] << '\n'; } } }