結果

問題 No.2325 Skill Tree
ユーザー cho435cho435
提出日時 2023-05-28 14:04:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 592 ms / 3,000 ms
コード長 848 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 211,276 KB
実行使用メモリ 14,836 KB
最終ジャッジ日時 2024-06-08 04:39:09
合計ジャッジ時間 20,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 243 ms
6,940 KB
testcase_08 AC 161 ms
7,936 KB
testcase_09 AC 276 ms
6,940 KB
testcase_10 AC 202 ms
10,804 KB
testcase_11 AC 277 ms
8,832 KB
testcase_12 AC 504 ms
14,236 KB
testcase_13 AC 508 ms
14,276 KB
testcase_14 AC 522 ms
14,244 KB
testcase_15 AC 505 ms
14,236 KB
testcase_16 AC 484 ms
14,352 KB
testcase_17 AC 497 ms
14,180 KB
testcase_18 AC 485 ms
14,152 KB
testcase_19 AC 479 ms
14,244 KB
testcase_20 AC 488 ms
14,204 KB
testcase_21 AC 504 ms
14,224 KB
testcase_22 AC 509 ms
14,116 KB
testcase_23 AC 508 ms
14,288 KB
testcase_24 AC 506 ms
14,168 KB
testcase_25 AC 499 ms
14,296 KB
testcase_26 AC 503 ms
14,112 KB
testcase_27 AC 546 ms
14,748 KB
testcase_28 AC 548 ms
14,784 KB
testcase_29 AC 554 ms
14,720 KB
testcase_30 AC 568 ms
14,664 KB
testcase_31 AC 539 ms
14,680 KB
testcase_32 AC 537 ms
14,816 KB
testcase_33 AC 519 ms
14,668 KB
testcase_34 AC 527 ms
14,696 KB
testcase_35 AC 561 ms
14,764 KB
testcase_36 AC 592 ms
14,836 KB
testcase_37 AC 564 ms
14,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  int n;
  cin>>n;
  vector<int> l(n,0),a(n,0);
  rep(i,n-1) cin>>l.at(i+1)>>a.at(i+1);
  rep(i,n) a.at(i)--;
  vector<vector<int>> g(n);
  rep(i,n-1){
    g.at(a.at(i+1)).push_back(i+1);
  }
  priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> pq;
  pq.push({0,0});
  vector<int> q1;
  vector<int> q2(n,-1);
  while(!pq.empty()){
    auto [lv,nw]=pq.top();
    pq.pop();
    q2.at(nw)=lv;
    q1.push_back(lv);
    for(int nx:g.at(nw)){
      pq.push({max(lv,l.at(nx)),nx});
    }
  }
  int q;
  cin>>q;
  rep(Qi,q){
    int t,x;
    cin>>t>>x;
    if(t==1){
      int ans=upper_bound(q1.begin(),q1.end(),x)-q1.begin();
      cout<<ans<<'\n';
    }else{
      cout<<q2.at(x-1)<<'\n';
    }
  }
}
0