結果

問題 No.2325 Skill Tree
ユーザー zezerozezero
提出日時 2023-05-28 14:54:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 588 ms / 3,000 ms
コード長 1,155 bytes
コンパイル時間 3,752 ms
コンパイル使用メモリ 173,556 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-06-08 06:26:37
合計ジャッジ時間 21,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 260 ms
5,376 KB
testcase_08 AC 174 ms
9,216 KB
testcase_09 AC 298 ms
7,296 KB
testcase_10 AC 227 ms
13,184 KB
testcase_11 AC 290 ms
10,368 KB
testcase_12 AC 518 ms
17,328 KB
testcase_13 AC 527 ms
17,436 KB
testcase_14 AC 532 ms
17,448 KB
testcase_15 AC 518 ms
17,536 KB
testcase_16 AC 515 ms
17,408 KB
testcase_17 AC 506 ms
17,412 KB
testcase_18 AC 519 ms
17,328 KB
testcase_19 AC 507 ms
17,408 KB
testcase_20 AC 516 ms
17,408 KB
testcase_21 AC 526 ms
17,408 KB
testcase_22 AC 552 ms
17,280 KB
testcase_23 AC 526 ms
17,280 KB
testcase_24 AC 518 ms
17,428 KB
testcase_25 AC 542 ms
17,280 KB
testcase_26 AC 531 ms
17,408 KB
testcase_27 AC 549 ms
16,640 KB
testcase_28 AC 529 ms
16,560 KB
testcase_29 AC 540 ms
16,640 KB
testcase_30 AC 563 ms
16,668 KB
testcase_31 AC 581 ms
16,768 KB
testcase_32 AC 540 ms
16,624 KB
testcase_33 AC 558 ms
16,680 KB
testcase_34 AC 541 ms
16,640 KB
testcase_35 AC 579 ms
16,592 KB
testcase_36 AC 568 ms
16,640 KB
testcase_37 AC 588 ms
16,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <iomanip>
#include <cstring>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i,n) for (int i = 0; i < int(n);i++)
const ll INF = 1LL << 60;

int main(){
  int n;
  cin >> n;
  vector<ll> l(n);
  vector<int> a(n);
  vector<ll> d(n,INF);
  vector<vector<int>> g(n);
  d[0] = 0;
  for (int i = 1; i < n;i++){
    cin >> l[i] >> a[i];
    g[a[i]-1].push_back(i);
  }
  queue<int> q;
  q.push(0);
  while(!q.empty()){
    auto x = q.front();
    //cout << x << endl;
    q.pop();
    for (auto nx:g[x]){
      d[nx] = d[x] + max(l[nx]-d[x],0LL);
      q.push(nx); 
    }
  }
  //cout << "ok" << endl;
  auto d2 = d;
  sort(d2.begin(),d2.end());
  int t;
  cin >> t;
  while(t--){
    int type,x;
    cin >> type >> x;
    if (type == 1){
      cout << int(lower_bound(d2.begin(),d2.end(),x+1)-d2.begin()) << endl;
    }
    else{
      if (d[x-1] == INF){
        cout << -1 << endl;
      }
      else cout << d[x-1] << endl;
    }

  }

  return 0;
}
0