結果

問題 No.2325 Skill Tree
ユーザー marblemarble
提出日時 2023-05-28 15:30:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,499 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 178,424 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-12-27 07:09:34
合計ジャッジ時間 125,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 3 ms
10,624 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 2 ms
17,280 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
14,720 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2,092 ms
21,248 KB
testcase_08 AC 2,276 ms
13,824 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<vector<pair<int,int>>> g;
vector<int> vis;
int N;
int dfs(int c,int ml,int last){
    if(c == last){
        return ml;
    }
    int ans=-1;
    vis[c] = true;
    for(auto next : g[c]){
        if(vis[next.first]){
            continue;
        }
        ans = dfs(next.first,max(ml,next.second), last);
        if(ans != -1){
            break;
        }
    }
    return ans;
}

int solve(){
    int x,y;
    cin >> x >> y;
    if(x == 1){
        deque<int> co;
        ll ans=1;
        co.push_back(0);
        while(!co.empty()){
            int p=co.front();
            co.pop_front();
            vis[p] = true;
            for(auto next:g[p]){
                if(next.second<=y && !vis[next.first]){
                    ans++;
                    co.push_back(next.first);
                    vis[next.first] = true;
                }
            }
        }
        for(int i=0;i<N;i++){
            vis[i] = false;
        }
        return ans;
    }else{
        ll ans = dfs(0,1,y-1);
        for(int i=0;i<N;i++){
            vis[i] = false;
        }
        return ans;   
    }
}

int main(){
    cin >> N;
    vis.resize(N);
    g.resize(N);
    for(int i=1;i<N;i++){
        int L,A;
        cin >> L >> A;
        A--;
        g[A].push_back({i,L});
        g[i].push_back({A,L});
    }
    int Q;
    cin >> Q;
    for(int i=0;i<Q;i++){
        int ans = solve();
        cout << ans << endl;
    }
}
0