結果
問題 | No.2325 Skill Tree |
ユーザー | gyozasukisuki |
提出日時 | 2023-05-28 15:21:41 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,425 bytes |
コンパイル時間 | 3,065 ms |
コンパイル使用メモリ | 211,536 KB |
実行使用メモリ | 248,412 KB |
最終ジャッジ日時 | 2024-12-27 06:14:40 |
合計ジャッジ時間 | 108,446 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
10,624 KB |
testcase_02 | AC | 2 ms
10,624 KB |
testcase_03 | AC | 2 ms
39,680 KB |
testcase_04 | AC | 2 ms
10,624 KB |
testcase_05 | AC | 2 ms
23,808 KB |
testcase_06 | AC | 2 ms
10,624 KB |
testcase_07 | AC | 1,696 ms
44,560 KB |
testcase_08 | AC | 2,096 ms
21,504 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 | AC | 591 ms
29,952 KB |
testcase_18 | AC | 611 ms
39,808 KB |
testcase_19 | AC | 599 ms
49,152 KB |
testcase_20 | AC | 935 ms
108,092 KB |
testcase_21 | AC | 589 ms
49,152 KB |
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 | - |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/all> //using namespace atcoder; using namespace std; const int INF = 1e9; using ll = long long; using inv = vector<int>; using stv = vector<string>; using pint = pair<int,int>; #define FOR(i,l,r) for(int i=(l); i<(r); i++) #define rep(i,r) for(int i=0; i<(r); i++) #define repl(i,r) for(long long i=0; i<(r); i++) #define FORl(i,l,r) for(long long i=(l); i<(r); i++) #define INFL ((1LL<<62)-(1LL<<31)) #define pb(x) push_back(x) #define CIN(x) cin >> x // to and cost using Graph = vector<vector<pair<ll,ll>>>; void dfs(Graph G,int v,ll nowlv, vector<ll> &lv, vector<bool> &seen){ seen[v] = true; lv[v] = nowlv; if(G[v].size() == 0) return; for(auto [nexv,l] : G[v]){ if(seen[nexv]) continue; dfs(G,nexv,(nowlv > l ? nowlv:l),lv,seen); } } int main(){ ll N; cin >> N; Graph G(N,vector<pair<ll,ll>>()); vector<ll> minl(N,-1LL); vector<bool> seen(N,false); seen[0] = true; rep(i,N-1){ ll L,A; cin >> L >> A; A--; G[A].pb(make_pair(i+1,L)); } dfs(G,0,1,minl,seen); // rep(i,N) cout << minl[i] << " "; // cout<< endl; ll Q; cin >> Q; rep(q,Q){ int t; cin >> t; if(t == 1){ ll x; cin >> x; ll ans= 0; rep(i,N) if(minl[i] != -1 && minl[i] <= x) ans++; cout << ans << endl; }else{ int y; cin >> y; y--; cout << minl[y] << endl; } } }