結果

問題 No.2325 Skill Tree
ユーザー KKT89KKT89
提出日時 2023-05-28 14:37:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 3,000 ms
コード長 1,384 bytes
コンパイル時間 2,414 ms
コンパイル使用メモリ 224,480 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-06-08 05:52:55
合計ジャッジ時間 9,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 34 ms
5,376 KB
testcase_08 AC 35 ms
7,296 KB
testcase_09 AC 42 ms
6,016 KB
testcase_10 AC 51 ms
9,984 KB
testcase_11 AC 68 ms
8,064 KB
testcase_12 AC 99 ms
12,928 KB
testcase_13 AC 102 ms
12,928 KB
testcase_14 AC 99 ms
12,928 KB
testcase_15 AC 106 ms
13,056 KB
testcase_16 AC 100 ms
12,928 KB
testcase_17 AC 96 ms
13,056 KB
testcase_18 AC 95 ms
12,928 KB
testcase_19 AC 97 ms
12,928 KB
testcase_20 AC 97 ms
13,056 KB
testcase_21 AC 97 ms
13,056 KB
testcase_22 AC 101 ms
12,928 KB
testcase_23 AC 102 ms
12,928 KB
testcase_24 AC 100 ms
12,928 KB
testcase_25 AC 101 ms
12,928 KB
testcase_26 AC 108 ms
12,928 KB
testcase_27 AC 129 ms
13,548 KB
testcase_28 AC 125 ms
13,756 KB
testcase_29 AC 129 ms
13,536 KB
testcase_30 AC 122 ms
13,572 KB
testcase_31 AC 121 ms
13,664 KB
testcase_32 AC 113 ms
13,572 KB
testcase_33 AC 117 ms
13,676 KB
testcase_34 AC 116 ms
13,564 KB
testcase_35 AC 128 ms
13,548 KB
testcase_36 AC 124 ms
13,688 KB
testcase_37 AC 129 ms
13,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}
inline double time() {
    return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n; cin >> n;
    vector<int> ok(n,-1);
    ok[0] = 0;
    vector<vector<pair<int,int>>> g(n);
    for (int i = 1; i < n; ++i) {
        int l,a; cin >> l >> a;
        a--;
        g[a].push_back({i,l});
    }
    {
        queue<int> q;
        q.push(0);
        while (q.size()) {
            int s = q.front(); q.pop();
            for (auto p : g[s]) {
                ok[p.first] = max(p.second, ok[s]);
                q.push(p.first);
            }
        }
    }
    vector<int> v;
    for (int i = 0; i < n; ++i) {
        if (ok[i] != -1) {
            v.push_back(ok[i]);
        }
    }
    sort(v.begin(), v.end());
    int q; cin >> q;
    while (q--) {
        int t,x; cin >> t >> x;
        if (t == 1) {
            cout << lower_bound(v.begin(), v.end(), x+1) - v.begin() << "\n";
        }
        else {
            cout << ok[x-1] << "\n";
        }
    }
}
0