結果

問題 No.2325 Skill Tree
ユーザー Anthony1009Anthony1009
提出日時 2023-05-28 15:31:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,112 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 167,056 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-08 07:57:06
合計ジャッジ時間 16,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1,702 ms
5,376 KB
testcase_08 AC 2,628 ms
5,376 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(v) begin(v), end(v)
using namespace std;
using P = pair<int,int>;
using ll = long long;
using vi = vector<int>;
using vll = vector<ll>;

int main() {
    int n,q;
    cin >> n;
    int l[n+1][2];
    for(int i = 2; i <= n;i++) cin >> l[i][0] >> l[i][1];
    
    int level[n+1];
    rep(i,n+1) level[i] = -1;
    level[1] = 0;
    for(int j = 2;j <= n; j++){
        int waza = j;
        int check_waza[n+1];
        rep(k,n+1) check_waza[k] = 0;
        while(1){
            level[j] = max(l[waza][0],level[j]);
            check_waza[waza]++;
            waza = l[waza][1];
            if(waza == 1) break;
            else if(check_waza[waza] == 2){
                level[j] = -1;
                break;
            }
        }
    }
    
    cin >> q;
    rep(i,q){
        int t,x;
        ll ans = 0;
        cin >> t >> x;
        if(t == 1){
            rep(j,n+1) if(x >= level[j] && level[j] != -1) ans++;
        }else{
            ans = level[x];
        }
        cout << ans <<endl;
    }
    return 0;
}

0