結果

問題 No.2325 Skill Tree
ユーザー kobaryo222kobaryo222
提出日時 2023-05-28 15:09:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 682 ms / 3,000 ms
コード長 1,672 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 221,404 KB
実行使用メモリ 30,696 KB
最終ジャッジ日時 2024-06-08 07:09:02
合計ジャッジ時間 24,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 273 ms
6,912 KB
testcase_08 AC 196 ms
14,136 KB
testcase_09 AC 315 ms
10,832 KB
testcase_10 AC 268 ms
21,648 KB
testcase_11 AC 328 ms
16,688 KB
testcase_12 AC 647 ms
30,564 KB
testcase_13 AC 629 ms
30,568 KB
testcase_14 AC 642 ms
30,696 KB
testcase_15 AC 650 ms
30,564 KB
testcase_16 AC 651 ms
30,560 KB
testcase_17 AC 600 ms
30,528 KB
testcase_18 AC 592 ms
30,560 KB
testcase_19 AC 595 ms
30,560 KB
testcase_20 AC 598 ms
30,560 KB
testcase_21 AC 596 ms
30,688 KB
testcase_22 AC 649 ms
30,568 KB
testcase_23 AC 643 ms
30,564 KB
testcase_24 AC 664 ms
30,560 KB
testcase_25 AC 651 ms
30,556 KB
testcase_26 AC 661 ms
30,560 KB
testcase_27 AC 643 ms
30,112 KB
testcase_28 AC 652 ms
30,120 KB
testcase_29 AC 655 ms
30,112 KB
testcase_30 AC 635 ms
30,236 KB
testcase_31 AC 650 ms
30,244 KB
testcase_32 AC 610 ms
30,120 KB
testcase_33 AC 607 ms
30,240 KB
testcase_34 AC 612 ms
30,244 KB
testcase_35 AC 670 ms
30,116 KB
testcase_36 AC 677 ms
30,120 KB
testcase_37 AC 682 ms
30,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
#define rep(i, n) for (int i = 0; i < n; i++)
#define INF (1LL << 60)
#define all(v) (v).begin(), (v).end()

template <class T>
void chmin(T &a, T b) {
    if (a > b) a = b;
}

template <class T>
void chmax(T &a, T b) {
    if (a < b) a = b;
}

int main() {
    ll N;
    cin >> N;
    vector<ll> L(N), A(N);
    vector<ll> l = {0};
    vector<vector<ll>> revA(N);
    rep(i, N - 1) {
        cin >> L[i + 1] >> A[i + 1];
        A[i + 1]--;
        l.push_back(L[i + 1]);
        revA[A[i + 1]].push_back(i + 1);
    }
    sort(all(l));
    l.erase(unique(all(l)), l.end());
    unordered_map<ll, ll> mp;
    vector<ll> rev(l.size());
    rep(i, l.size()) {
        mp[l[i]] = i;
        rev[i] = l[i];
    }
    rep(i, N) { L[i] = mp[L[i]]; }
    queue<ll> que;
    vector<ll> ans1(N), ans2(N, -1);
    ans2[0] = 1;
    rep(i, N) {
        if (A[i] == 0) que.push(i);
    }
    while (!que.empty()) {
        ll t = que.front();
        que.pop();
        if (ans2[t] != -1) continue;
        ans2[t] = max(ans2[A[t]], rev[L[t]]);
        rep(i, revA[t].size()) { que.push(revA[t][i]); }
    }
    // rep(i, N) { cout << ans2[i] << endl; }

    rep(i, N) {
        if (ans2[i] == -1) continue;
        ans1[mp[ans2[i]]]++;
    }
    rep(i, l.size() - 1) { ans1[i + 1] += ans1[i]; }

    ll Q;
    cin >> Q;

    rep(i, Q) {
        ll t, x;
        cin >> t >> x;
        if (t == 1) {
            auto itr = upper_bound(all(l), x);
            --itr;
            cout << ans1[distance(l.begin(), itr)] << endl;
        } else {
            x--;
            cout << ans2[x] << endl;
        }
    }
}
0