結果

問題 No.2325 Skill Tree
ユーザー hourenhouren
提出日時 2023-05-28 15:32:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 166 ms / 3,000 ms
コード長 1,391 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 179,716 KB
実行使用メモリ 14,200 KB
最終ジャッジ日時 2024-06-08 07:57:41
合計ジャッジ時間 8,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 40 ms
5,376 KB
testcase_08 AC 37 ms
7,424 KB
testcase_09 AC 44 ms
6,272 KB
testcase_10 AC 53 ms
10,240 KB
testcase_11 AC 65 ms
8,192 KB
testcase_12 AC 104 ms
13,444 KB
testcase_13 AC 101 ms
13,412 KB
testcase_14 AC 97 ms
13,312 KB
testcase_15 AC 97 ms
13,440 KB
testcase_16 AC 102 ms
13,460 KB
testcase_17 AC 96 ms
13,400 KB
testcase_18 AC 97 ms
13,312 KB
testcase_19 AC 98 ms
13,372 KB
testcase_20 AC 96 ms
13,312 KB
testcase_21 AC 102 ms
13,404 KB
testcase_22 AC 106 ms
13,396 KB
testcase_23 AC 106 ms
13,440 KB
testcase_24 AC 101 ms
13,312 KB
testcase_25 AC 100 ms
13,412 KB
testcase_26 AC 100 ms
13,568 KB
testcase_27 AC 147 ms
13,880 KB
testcase_28 AC 143 ms
13,856 KB
testcase_29 AC 154 ms
13,872 KB
testcase_30 AC 141 ms
13,956 KB
testcase_31 AC 143 ms
13,896 KB
testcase_32 AC 139 ms
14,188 KB
testcase_33 AC 135 ms
14,060 KB
testcase_34 AC 136 ms
13,928 KB
testcase_35 AC 147 ms
13,796 KB
testcase_36 AC 152 ms
14,200 KB
testcase_37 AC 166 ms
13,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define fix(x) fixed << setprecision(x)
#define asc(x) x, vector<x>, greater<x>
#define rep(i, n) for(ll i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
constexpr ll INFLL = (1LL << 62), MOD = 998244353;
constexpr int INF = (1 << 30);

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,q;
    cin >> n;
    vector<vector<int>> g(n);
    vector<int> l(n);
    rep(i,n-1){
        int a;
        cin >> l[i+1] >> a;
        g[a-1].push_back(i+1);
    }
    vector<int> dist(n,INF), r(1,0);
    dist[0] = 0;
    priority_queue<asc(P)> pq;
    pq.push({0,0});
    while(pq.size()){
        int now, d;
        tie(d,now) = pq.top();
        pq.pop();
        if(dist[now]!=d) continue;
        r.push_back(d);
        for(int x:g[now]){
            if(chmin(dist[x], max(dist[now], l[x]))) pq.push({dist[x], x});
        }
    }
    rep(i,n) if(dist[i]==INF) dist[i] = -1;
    cin >> q;
    rep(houren,q){
        int t,x;
        cin >> t >> x;
        if(t==1){
            cout << upper_bound(all(r),x) - r.begin()-1 << '\n';
        }else{
            cout << dist[x-1] << '\n';
        }
    }
    return 0;
}
0