結果

問題 No.2325 Skill Tree
ユーザー dyktr_06dyktr_06
提出日時 2023-04-15 12:15:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 429 ms / 3,000 ms
コード長 1,101 bytes
コンパイル時間 2,591 ms
コンパイル使用メモリ 210,348 KB
実行使用メモリ 13,812 KB
最終ジャッジ日時 2024-10-11 00:05:01
合計ジャッジ時間 17,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 199 ms
5,248 KB
testcase_08 AC 118 ms
7,424 KB
testcase_09 AC 221 ms
6,144 KB
testcase_10 AC 139 ms
10,240 KB
testcase_11 AC 213 ms
8,320 KB
testcase_12 AC 384 ms
13,440 KB
testcase_13 AC 381 ms
13,440 KB
testcase_14 AC 390 ms
13,440 KB
testcase_15 AC 386 ms
13,440 KB
testcase_16 AC 386 ms
13,440 KB
testcase_17 AC 382 ms
13,440 KB
testcase_18 AC 385 ms
13,440 KB
testcase_19 AC 384 ms
13,440 KB
testcase_20 AC 387 ms
13,440 KB
testcase_21 AC 390 ms
13,440 KB
testcase_22 AC 384 ms
13,440 KB
testcase_23 AC 383 ms
13,440 KB
testcase_24 AC 380 ms
13,312 KB
testcase_25 AC 380 ms
13,312 KB
testcase_26 AC 387 ms
13,312 KB
testcase_27 AC 427 ms
13,684 KB
testcase_28 AC 424 ms
13,688 KB
testcase_29 AC 429 ms
13,684 KB
testcase_30 AC 418 ms
13,628 KB
testcase_31 AC 416 ms
13,812 KB
testcase_32 AC 413 ms
13,692 KB
testcase_33 AC 414 ms
13,684 KB
testcase_34 AC 413 ms
13,684 KB
testcase_35 AC 424 ms
13,680 KB
testcase_36 AC 421 ms
13,684 KB
testcase_37 AC 429 ms
13,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

vector<int> l;
vector<vector<int>> G;
vector<int> ans1;

void dfs(int curr, int prev){
    for(auto x : G[curr]){
        if(x == prev){
            continue;
        }
        ans1[x] = max(ans1[curr], l[x]);
        dfs(x, curr);
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n; cin >> n;
    G.resize(n);
    l.resize(n);
    ans1.assign(n, -1);

    for(int i = 1; i < n; i++){
        int a; cin >> l[i] >> a; a--;
        G[a].push_back(i);
    }

    ans1[0] = 1;
    dfs(0, -1);

    vector<int> ans2;
    for(int i = 0; i < n; i++){
        if(ans1[i] != -1){
            ans2.emplace_back(ans1[i]);
        }
    }
    sort(ans2.begin(), ans2.end());

    int q; cin >> q;
    while(q--){
        int t; cin >> t;
        if(t == 1){
            int x; cin >> x;
            auto iter = upper_bound(ans2.begin(), ans2.end(), x);
            int k = iter - ans2.begin();
            cout << k << endl;
        }else{
            int y; cin >> y; y--;
            cout << ans1[y] << endl;
        }
    }
}
0