結果

問題 No.2325 Skill Tree
ユーザー HaaHaa
提出日時 2023-05-28 14:10:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 633 ms / 3,000 ms
コード長 1,053 bytes
コンパイル時間 1,674 ms
コンパイル使用メモリ 177,920 KB
実行使用メモリ 18,512 KB
最終ジャッジ日時 2024-06-08 04:50:09
合計ジャッジ時間 21,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 256 ms
6,940 KB
testcase_08 AC 175 ms
9,472 KB
testcase_09 AC 300 ms
7,680 KB
testcase_10 AC 237 ms
13,824 KB
testcase_11 AC 306 ms
10,752 KB
testcase_12 AC 555 ms
18,484 KB
testcase_13 AC 559 ms
18,496 KB
testcase_14 AC 559 ms
18,512 KB
testcase_15 AC 557 ms
18,416 KB
testcase_16 AC 561 ms
18,504 KB
testcase_17 AC 541 ms
18,396 KB
testcase_18 AC 545 ms
18,200 KB
testcase_19 AC 552 ms
18,372 KB
testcase_20 AC 540 ms
18,400 KB
testcase_21 AC 549 ms
18,372 KB
testcase_22 AC 559 ms
18,432 KB
testcase_23 AC 557 ms
18,472 KB
testcase_24 AC 562 ms
18,340 KB
testcase_25 AC 568 ms
18,404 KB
testcase_26 AC 592 ms
18,380 KB
testcase_27 AC 633 ms
17,820 KB
testcase_28 AC 583 ms
17,876 KB
testcase_29 AC 620 ms
17,808 KB
testcase_30 AC 598 ms
17,796 KB
testcase_31 AC 583 ms
17,860 KB
testcase_32 AC 563 ms
17,760 KB
testcase_33 AC 569 ms
17,896 KB
testcase_34 AC 571 ms
17,800 KB
testcase_35 AC 593 ms
17,816 KB
testcase_36 AC 596 ms
17,900 KB
testcase_37 AC 599 ms
17,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T& x, const T& y){return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T& x, const T& y){return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    int n; cin >> n;
    VVI g(n);
    VI l(n), a(n);
    REP(i,n-1){
        cin >> l[i+1] >> a[i+1], a[i+1]--;
        g[a[i+1]].push_back(i+1);
    }
    VI ls(n,INF), mls(n,-1);
    function<void(int,int)> dfs=[&](int v, int m){
        ls[v]=m;
        mls[v]=m;
        for(auto to:g[v]){
            dfs(to,max(m,(int)l[to]));
        }
    };
    dfs(0,0);
    sort(ALL(ls));
    int q; cin >> q;
    int t, x;
    REP(i,q){
        cin >> t >> x;
        if(t==1)
            cout << upper_bound(ALL(ls),x)-ls.begin() << endl;
        else
            cout << mls[x-1] << endl;
    }
    return 0;
}
0