結果

問題 No.2325 Skill Tree
ユーザー umimelumimel
提出日時 2023-05-28 14:00:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 192 ms / 3,000 ms
コード長 2,372 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 182,332 KB
実行使用メモリ 20,208 KB
最終ジャッジ日時 2024-06-08 04:30:44
合計ジャッジ時間 9,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 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 35 ms
5,504 KB
testcase_08 AC 39 ms
9,984 KB
testcase_09 AC 47 ms
7,936 KB
testcase_10 AC 59 ms
14,720 KB
testcase_11 AC 58 ms
11,264 KB
testcase_12 AC 111 ms
19,584 KB
testcase_13 AC 111 ms
19,460 KB
testcase_14 AC 118 ms
19,584 KB
testcase_15 AC 117 ms
19,500 KB
testcase_16 AC 115 ms
19,456 KB
testcase_17 AC 107 ms
19,584 KB
testcase_18 AC 113 ms
19,496 KB
testcase_19 AC 112 ms
19,584 KB
testcase_20 AC 115 ms
19,568 KB
testcase_21 AC 111 ms
19,456 KB
testcase_22 AC 116 ms
19,584 KB
testcase_23 AC 116 ms
19,540 KB
testcase_24 AC 115 ms
19,584 KB
testcase_25 AC 113 ms
19,556 KB
testcase_26 AC 115 ms
19,580 KB
testcase_27 AC 189 ms
19,712 KB
testcase_28 AC 179 ms
19,712 KB
testcase_29 AC 178 ms
19,676 KB
testcase_30 AC 177 ms
19,696 KB
testcase_31 AC 186 ms
19,568 KB
testcase_32 AC 168 ms
19,956 KB
testcase_33 AC 170 ms
19,736 KB
testcase_34 AC 167 ms
19,692 KB
testcase_35 AC 187 ms
19,824 KB
testcase_36 AC 178 ms
20,208 KB
testcase_37 AC 192 ms
19,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count());
const ll MOD1000000007 = 1000000007;
const ll MOD998244353 = 998244353;
const ll MOD[3] = {999727999, 1070777777, 1000000007};
const ll LINF = 1LL << 60;
const int IINF = 1 << 30 - 1;

template<typename T> struct Edge{
    int to; T w;
    Edge(int to_, T w_=1){
        to = to_;
        w=w_;
    }
};
template<typename T> using Tree = vector<vector<Edge<T>>>;
template<typename T> using Graph = vector<vector<Edge<T>>>;
/* 容量&重み付きエッジ for Dinic */
template<typename T> struct REdge{
    int to;
    T cap;
    T cost;
    int rev;
    REdge(int to_, T cap_, T cost_=1){
        to = to_;
        cap = cap_;
        cost = cost_;
    }
    
    REdge(int to_, T cap_, T cost_, int rev_){
        to = to_;
        cap = cap_;
        cost = cost_;
        rev = rev_;
    }
};

/* 残余グラフ for Dinic */
template<typename T> using RGraph = vector<vector<REdge<T>>>;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    ll n; cin >> n;
    vector<ll> l(n), a(n);
    for(ll i=1; i<n; i++){
        cin >> l[i] >> a[i];
        a[i]--;
    }

    Graph<ll> G(n);
    for(ll i=1; i<n; i++) G[a[i]].pb(Edge<ll>(i));

    vector<ll> min_l(n, LINF);
    min_l[0] = 0;
    priority_queue<pll, vector<pll>, greater<pll>> PQ;
    PQ.push({0, 0});
    while(!PQ.empty()){
        ll v = PQ.top().se;
        ll tmp_min_l = PQ.top().fi;
        PQ.pop();
        if(min_l[v] < tmp_min_l) continue;

        for(Edge<ll> e : G[v]){
            if(max(min_l[v], l[e.to]) < min_l[e.to]){
                min_l[e.to] = max(min_l[v], l[e.to]);
                PQ.push({min_l[e.to], e.to});
            }
        }
    }

    vector<ll> kind(n);
    rep(i, n) kind[i] = min_l[i];
    sort(all(kind));

    ll q; cin >> q;
    while(q--){
        ll t, x; cin >> t >> x;
        if(t==1){
            cout << upper_bound(all(kind), x)-kind.begin() << '\n';
        }else{
            if(min_l[x-1]==LINF) cout << -1 << '\n';
            else cout << min_l[x-1] << '\n';
        }
    }
}
0