結果

問題 No.2325 Skill Tree
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-04 00:39:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 610 ms / 3,000 ms
コード長 1,099 bytes
コンパイル時間 1,576 ms
コンパイル使用メモリ 120,960 KB
実行使用メモリ 13,036 KB
最終ジャッジ日時 2024-06-09 03:46:44
合計ジャッジ時間 24,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 2 ms
5,376 KB
testcase_07 AC 263 ms
5,376 KB
testcase_08 AC 182 ms
7,168 KB
testcase_09 AC 297 ms
5,888 KB
testcase_10 AC 230 ms
9,728 KB
testcase_11 AC 309 ms
7,936 KB
testcase_12 AC 564 ms
12,672 KB
testcase_13 AC 561 ms
12,672 KB
testcase_14 AC 550 ms
12,672 KB
testcase_15 AC 561 ms
12,672 KB
testcase_16 AC 557 ms
12,672 KB
testcase_17 AC 549 ms
12,672 KB
testcase_18 AC 540 ms
12,672 KB
testcase_19 AC 548 ms
12,672 KB
testcase_20 AC 553 ms
12,800 KB
testcase_21 AC 538 ms
12,800 KB
testcase_22 AC 561 ms
12,672 KB
testcase_23 AC 563 ms
12,672 KB
testcase_24 AC 571 ms
12,672 KB
testcase_25 AC 570 ms
12,672 KB
testcase_26 AC 556 ms
12,672 KB
testcase_27 AC 595 ms
13,020 KB
testcase_28 AC 594 ms
13,032 KB
testcase_29 AC 610 ms
13,028 KB
testcase_30 AC 607 ms
13,036 KB
testcase_31 AC 607 ms
13,028 KB
testcase_32 AC 590 ms
13,036 KB
testcase_33 AC 576 ms
13,024 KB
testcase_34 AC 577 ms
13,028 KB
testcase_35 AC 604 ms
13,028 KB
testcase_36 AC 610 ms
13,036 KB
testcase_37 AC 609 ms
13,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

vector<int> mx;
vector<bool> visit;
void dfs(vector<vector<int>> &E, int from, int p){
    visit[from] = 1;
    for(auto to : E[from]){
        if (p == to) continue;
        mx[to] = max(mx[from], mx[to]);
        dfs(E, to, from);
    }
}

int main(){

    int N, Q, t, x, L, A;
    cin >> N;
    vector<vector<int>> E(N);
    mx.resize(N); visit.resize(N);
    for (int i=1; i<N; i++){
        cin >> L >> A; A--;
        mx[i] = L;
        E[A].push_back(i);
    }

    dfs(E, 0, -1);

    vector<int> lv;
    for (int i=0; i<N; i++) if (visit[i]) lv.push_back(mx[i]);
    sort(lv.begin(), lv.end());

    cin >> Q;
    while(Q){
        Q--;
        cin >> t >> x;
        if (t == 1) cout << upper_bound(lv.begin(), lv.end(), x) - lv.begin() << endl;
        else cout << (visit[x-1] ? mx[x-1] : -1) << endl;
    }

    return 0;
}
0