結果

問題 No.2325 Skill Tree
ユーザー FplusFplusFFplusFplusF
提出日時 2023-05-28 14:24:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 3,000 ms
コード長 1,355 bytes
コンパイル時間 2,619 ms
コンパイル使用メモリ 217,484 KB
実行使用メモリ 15,408 KB
最終ジャッジ日時 2024-06-08 05:22:15
合計ジャッジ時間 9,412 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 1 ms
5,376 KB
testcase_07 AC 33 ms
5,376 KB
testcase_08 AC 34 ms
7,552 KB
testcase_09 AC 44 ms
6,144 KB
testcase_10 AC 55 ms
10,516 KB
testcase_11 AC 52 ms
8,320 KB
testcase_12 AC 109 ms
13,560 KB
testcase_13 AC 105 ms
13,696 KB
testcase_14 AC 104 ms
13,696 KB
testcase_15 AC 103 ms
13,696 KB
testcase_16 AC 105 ms
13,824 KB
testcase_17 AC 104 ms
13,696 KB
testcase_18 AC 105 ms
13,696 KB
testcase_19 AC 100 ms
13,624 KB
testcase_20 AC 104 ms
13,784 KB
testcase_21 AC 104 ms
13,696 KB
testcase_22 AC 109 ms
13,696 KB
testcase_23 AC 113 ms
13,696 KB
testcase_24 AC 113 ms
13,824 KB
testcase_25 AC 108 ms
13,680 KB
testcase_26 AC 106 ms
13,728 KB
testcase_27 AC 145 ms
15,400 KB
testcase_28 AC 140 ms
15,276 KB
testcase_29 AC 141 ms
15,276 KB
testcase_30 AC 140 ms
15,280 KB
testcase_31 AC 144 ms
15,256 KB
testcase_32 AC 130 ms
15,264 KB
testcase_33 AC 129 ms
15,400 KB
testcase_34 AC 133 ms
15,400 KB
testcase_35 AC 147 ms
15,404 KB
testcase_36 AC 141 ms
15,168 KB
testcase_37 AC 154 ms
15,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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]);
    }
    sort(all(v));
    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';
        }
    }
}
0