結果

問題 No.2325 Skill Tree
ユーザー CyanmondCyanmond
提出日時 2023-05-28 14:56:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 587 ms / 3,000 ms
コード長 1,224 bytes
コンパイル時間 2,513 ms
コンパイル使用メモリ 215,424 KB
実行使用メモリ 15,820 KB
最終ジャッジ日時 2024-06-08 06:33:58
合計ジャッジ時間 21,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 252 ms
5,376 KB
testcase_08 AC 167 ms
7,808 KB
testcase_09 AC 280 ms
6,272 KB
testcase_10 AC 218 ms
10,880 KB
testcase_11 AC 288 ms
8,704 KB
testcase_12 AC 548 ms
14,208 KB
testcase_13 AC 524 ms
14,208 KB
testcase_14 AC 521 ms
14,336 KB
testcase_15 AC 520 ms
14,208 KB
testcase_16 AC 525 ms
14,336 KB
testcase_17 AC 510 ms
14,208 KB
testcase_18 AC 504 ms
14,208 KB
testcase_19 AC 507 ms
14,208 KB
testcase_20 AC 520 ms
14,336 KB
testcase_21 AC 506 ms
14,336 KB
testcase_22 AC 525 ms
14,208 KB
testcase_23 AC 522 ms
14,208 KB
testcase_24 AC 516 ms
14,208 KB
testcase_25 AC 522 ms
14,208 KB
testcase_26 AC 527 ms
14,208 KB
testcase_27 AC 547 ms
15,820 KB
testcase_28 AC 554 ms
15,664 KB
testcase_29 AC 540 ms
15,688 KB
testcase_30 AC 539 ms
15,656 KB
testcase_31 AC 547 ms
15,680 KB
testcase_32 AC 526 ms
15,780 KB
testcase_33 AC 519 ms
15,660 KB
testcase_34 AC 522 ms
15,668 KB
testcase_35 AC 538 ms
15,664 KB
testcase_36 AC 557 ms
15,676 KB
testcase_37 AC 587 ms
15,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include "atcoder/modint"

using i64 = long long;
using Fp = atcoder::modint998244353;

int main() {
    int N;
    std::cin >> N;
    std::vector<int> L(N), A(N);
    std::vector<std::vector<int>> graph(N);
    for (int i = 1; i < N; ++i) {
        std::cin >> L[i] >> A[i];
        --A[i];
        graph[A[i]].push_back(i);
    }
    std::vector<int> dist(N, -1);
    dist[0] = 0;
    std::queue<int> que;
    que.push(0);
    while (not que.empty()) {
        const auto f = que.front();
        que.pop();
        for (const auto t : graph[f]) {
            i64 c = std::max(dist[f], L[t]);
            dist[t] = c;
            que.push(t);
        }
    }
    std::vector<i64> x;
    for (const auto e : dist) if (e != -1) x.push_back(e);
    std::sort(x.begin(), x.end());

    int Q;
    std::cin >> Q;
    while (Q--) {
        int t;
        std::cin >> t;
        if (t == 1) {
            int v;
            std::cin >> v;
            auto itr = std::upper_bound(x.begin(), x.end(), v);
            std::cout << (itr - x.begin()) << std::endl;
        } else {
            int v;
            std::cin >> v;
            --v;
            std::cout << dist[v] << std::endl;
        }
    }
}
0