結果

問題 No.2325 Skill Tree
ユーザー gyozasukisukigyozasukisuki
提出日時 2023-05-28 16:02:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,744 bytes
コンパイル時間 3,289 ms
コンパイル使用メモリ 218,328 KB
実行使用メモリ 428,612 KB
最終ジャッジ日時 2024-12-27 10:36:25
合計ジャッジ時間 58,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 4 ms
233,376 KB
testcase_02 AC 3 ms
10,624 KB
testcase_03 AC 2 ms
224,396 KB
testcase_04 AC 2 ms
10,624 KB
testcase_05 AC 3 ms
196,304 KB
testcase_06 AC 2 ms
10,624 KB
testcase_07 AC 67 ms
201,304 KB
testcase_08 AC 84 ms
21,360 KB
testcase_09 AC 168 ms
207,484 KB
testcase_10 AC 232 ms
64,280 KB
testcase_11 AC 132 ms
228,328 KB
testcase_12 AC 249 ms
39,680 KB
testcase_13 AC 248 ms
216,008 KB
testcase_14 AC 357 ms
88,576 KB
testcase_15 AC 2,862 ms
428,612 KB
testcase_16 AC 219 ms
29,824 KB
testcase_17 AC 220 ms
187,652 KB
testcase_18 AC 249 ms
39,680 KB
testcase_19 AC 224 ms
261,924 KB
testcase_20 AC 634 ms
108,116 KB
testcase_21 AC 218 ms
24,448 KB
testcase_22 AC 261 ms
34,304 KB
testcase_23 AC 371 ms
63,576 KB
testcase_24 AC 241 ms
34,432 KB
testcase_25 AC 206 ms
24,448 KB
testcase_26 AC 237 ms
34,432 KB
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>
//#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,max(nowlv,l),lv,seen);
  }

}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  int N;
  cin >> N;
  Graph G(N,vector<pair<ll,ll>>());
  G.reserve(2*1e5);

  vector<ll> minl(N,-1LL);
  minl.reserve(2*1e5);

  vector<bool> seen(N,false);
  seen.reserve(2*1e5);
  
  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;

  vector<ll> smin;
  smin.reserve(2*1e5);

  smin = minl;
  sort(smin.begin(),smin.end());
  ll cnt = (ll)(upper_bound(smin.begin(),smin.end(),-1)-smin.begin());


  int Q;
  cin >> Q;
  rep(q,Q){
    int t;
    cin >> t;
    if(t == 1){
      ll x;
      cin >> x;

      ll ans= (ll)(upper_bound(smin.begin(),smin.end(),x)-smin.begin());
      ans -= cnt;
      
      cout << ans << "\n";

    }else{
      int y;
      cin >> y;
      y--;
      cout << minl[y] << "\n";
    }
  }

  return 0;
}
0