結果

問題 No.2325 Skill Tree
ユーザー Ryoga.exeRyoga.exe
提出日時 2023-05-28 15:09:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,182 bytes
コンパイル時間 2,577 ms
コンパイル使用メモリ 212,848 KB
実行使用メモリ 14,328 KB
最終ジャッジ日時 2024-06-08 07:07:50
合計ジャッジ時間 19,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 238 ms
6,944 KB
testcase_08 AC 156 ms
7,808 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 278 ms
8,704 KB
testcase_12 AC 520 ms
14,208 KB
testcase_13 AC 497 ms
14,208 KB
testcase_14 AC 503 ms
14,208 KB
testcase_15 WA -
testcase_16 AC 491 ms
14,208 KB
testcase_17 AC 503 ms
14,280 KB
testcase_18 AC 500 ms
14,208 KB
testcase_19 AC 479 ms
14,328 KB
testcase_20 WA -
testcase_21 AC 508 ms
14,208 KB
testcase_22 AC 512 ms
14,208 KB
testcase_23 WA -
testcase_24 AC 526 ms
14,208 KB
testcase_25 AC 513 ms
14,208 KB
testcase_26 AC 501 ms
14,172 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
    int n;
    cin >> n;
    vector<vector<int>> g(n);
    vector<int> levels(n);
    for (int i = 1; i < n; i++) {
        int l, a;
        cin >> l >> a;
        --a;
        levels[i] = l;
        g[a].push_back(i);
    }
    vector<int> type2(n, -1);
    queue<int> que;
    que.push(0);
    type2[0] = 0;
    while (!que.empty()) {
        auto cur = que.front();
        que.pop();
        for (auto to : g[cur]) {
            if (auto greaterLevel = max(levels[to], levels[cur]); type2[to] < greaterLevel) {
                type2[to] = greaterLevel;
            }
            que.push(to);
        }
    }
    auto type1 = type2;
    int exclude = 0;
    for (int i = 0; i < n; i++) {
        if (type1[i] == -1) {
            exclude++;
        }
    }
    sort(type1.begin(), type1.end());
    int q;
    cin >> q;
    while (q--) {
        int type, x;
        cin >> type >> x;
        if (type == 1) {
            cout << (upper_bound(type1.begin(), type1.end(), x) - type1.begin()) - exclude << endl;
        }
        else {
            cout << type2[x - 1] << endl;
        }
    }
}
0