結果

問題 No.2325 Skill Tree
ユーザー rurunrurun
提出日時 2023-05-28 14:17:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 571 ms / 3,000 ms
コード長 921 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 212,452 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-06-08 05:06:36
合計ジャッジ時間 21,003 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 254 ms
5,376 KB
testcase_08 AC 173 ms
8,064 KB
testcase_09 AC 286 ms
6,528 KB
testcase_10 AC 211 ms
11,392 KB
testcase_11 AC 289 ms
9,088 KB
testcase_12 AC 517 ms
15,104 KB
testcase_13 AC 532 ms
15,016 KB
testcase_14 AC 529 ms
14,976 KB
testcase_15 AC 525 ms
14,968 KB
testcase_16 AC 525 ms
14,976 KB
testcase_17 AC 518 ms
14,976 KB
testcase_18 AC 508 ms
14,976 KB
testcase_19 AC 514 ms
15,104 KB
testcase_20 AC 518 ms
14,976 KB
testcase_21 AC 519 ms
15,012 KB
testcase_22 AC 536 ms
15,104 KB
testcase_23 AC 560 ms
14,976 KB
testcase_24 AC 533 ms
15,012 KB
testcase_25 AC 530 ms
14,988 KB
testcase_26 AC 544 ms
15,100 KB
testcase_27 AC 566 ms
14,208 KB
testcase_28 AC 553 ms
14,208 KB
testcase_29 AC 559 ms
14,268 KB
testcase_30 AC 540 ms
14,208 KB
testcase_31 AC 541 ms
14,208 KB
testcase_32 AC 527 ms
14,208 KB
testcase_33 AC 529 ms
14,208 KB
testcase_34 AC 526 ms
14,208 KB
testcase_35 AC 540 ms
14,220 KB
testcase_36 AC 556 ms
14,208 KB
testcase_37 AC 571 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
int main() {
  int n;
  cin >> n;
  vector<vector<int>> vec(n);
  vector<int> par(n, -1), lev(n, 0);
  for (int i = 1; i < n; i++) {
    cin >> lev[i] >> par[i];
    par[i]--;
    vec[par[i]].push_back(i);
  }
  vector<int> min_lev(n, (1<<30));
  min_lev[0] = 0;
  queue<int> q;
  q.push(0);
  while (!q.empty()) {
    int p = q.front();
    q.pop();
    for (auto x : vec[p]) {
      min_lev[x] = max(lev[x], min_lev[p]);
      q.push(x);
    }
  }
  vector cop = min_lev;
  sort(cop.begin(), cop.end());
  int Q;
  cin >> Q;
  for (int i = 0; i < Q; i++) {
    int t, x;
    cin >> t >> x;
    if (t == 1) {
      auto itr = upper_bound(cop.begin(), cop.end(), x)-cop.begin();
      cout << itr << endl;
    }
    else if (t == 2) {
    	x--;
      if (min_lev[x] == (1<<30)) cout << -1 << endl;
      else cout << min_lev[x] << endl;

    }
  }

}
0