結果

問題 No.2325 Skill Tree
ユーザー umezoumezo
提出日時 2023-05-28 14:19:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 3,000 ms
コード長 1,126 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 212,568 KB
実行使用メモリ 18,152 KB
最終ジャッジ日時 2024-06-08 05:09:23
合計ジャッジ時間 9,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,064 KB
testcase_01 AC 5 ms
8,052 KB
testcase_02 AC 5 ms
8,080 KB
testcase_03 AC 4 ms
8,064 KB
testcase_04 AC 5 ms
8,192 KB
testcase_05 AC 4 ms
7,996 KB
testcase_06 AC 5 ms
8,064 KB
testcase_07 AC 41 ms
9,176 KB
testcase_08 AC 46 ms
11,520 KB
testcase_09 AC 50 ms
10,368 KB
testcase_10 AC 74 ms
13,952 KB
testcase_11 AC 63 ms
12,104 KB
testcase_12 AC 140 ms
16,640 KB
testcase_13 AC 146 ms
16,500 KB
testcase_14 AC 142 ms
16,608 KB
testcase_15 AC 136 ms
16,484 KB
testcase_16 AC 128 ms
16,460 KB
testcase_17 AC 141 ms
16,520 KB
testcase_18 AC 137 ms
16,584 KB
testcase_19 AC 141 ms
16,564 KB
testcase_20 AC 130 ms
16,580 KB
testcase_21 AC 126 ms
16,604 KB
testcase_22 AC 139 ms
16,456 KB
testcase_23 AC 141 ms
16,552 KB
testcase_24 AC 136 ms
16,508 KB
testcase_25 AC 141 ms
16,616 KB
testcase_26 AC 132 ms
16,456 KB
testcase_27 AC 163 ms
18,084 KB
testcase_28 AC 169 ms
18,116 KB
testcase_29 AC 159 ms
18,100 KB
testcase_30 AC 166 ms
17,960 KB
testcase_31 AC 170 ms
17,880 KB
testcase_32 AC 148 ms
17,672 KB
testcase_33 AC 157 ms
18,040 KB
testcase_34 AC 155 ms
18,152 KB
testcase_35 AC 171 ms
17,736 KB
testcase_36 AC 153 ms
17,412 KB
testcase_37 AC 170 ms
17,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

vector<int> G[200200];
const int INF=1e9+7;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  vector<int> L(n),A(n);
  for(int i=1;i<n;i++){
    cin>>L[i]>>A[i];
    A[i]--;
    G[i].push_back(A[i]);
    G[A[i]].push_back(i);
  }
  vector<int> P(n,INF);
  
  auto dfs=[&](auto dfs,int v,int p,int d)->void{
    d=max(d,L[v]);
    P[v]=d;
    for(auto nv:G[v]){
      if(nv==p) continue;
      dfs(dfs,nv,v,d);
    }
  };
  
  dfs(dfs,0,-1,0);
  map<int,int> m;
  rep(i,n) m[P[i]]++;
  int k=m.size();
  vector<int> B,C;
  for(auto [b,c]:m){
    B.push_back(b);
    C.push_back(c);
  }
  vector<int> S(k);
  S[0]=C[0];
  for(int i=1;i<k;i++) S[i]=S[i-1]+C[i];
  
  int q;
  cin>>q;
  while(q--){
    int c,x;
    cin>>c>>x;
    if(c==1){
      auto a=upper_bound(ALL(B),x)-B.begin();
      a--;
      cout<<S[a]<<'\n';
    }
    else{
      x--;
      if(P[x]==INF) cout<<-1<<'\n';
      else cout<<P[x]<<'\n';
    }
  }

  return 0;
}
0