結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 246 ms
5,376 KB
testcase_08 AC 167 ms
8,192 KB
testcase_09 AC 293 ms
6,656 KB
testcase_10 AC 221 ms
11,392 KB
testcase_11 AC 285 ms
9,088 KB
testcase_12 AC 517 ms
14,972 KB
testcase_13 AC 537 ms
14,972 KB
testcase_14 AC 525 ms
14,972 KB
testcase_15 AC 520 ms
14,884 KB
testcase_16 AC 511 ms
15,036 KB
testcase_17 AC 503 ms
15,080 KB
testcase_18 AC 503 ms
14,976 KB
testcase_19 AC 496 ms
14,976 KB
testcase_20 AC 507 ms
14,940 KB
testcase_21 AC 498 ms
15,040 KB
testcase_22 AC 525 ms
14,816 KB
testcase_23 AC 514 ms
14,984 KB
testcase_24 AC 525 ms
14,976 KB
testcase_25 AC 575 ms
15,104 KB
testcase_26 AC 533 ms
14,976 KB
testcase_27 AC 561 ms
14,208 KB
testcase_28 AC 553 ms
14,208 KB
testcase_29 AC 538 ms
14,208 KB
testcase_30 AC 533 ms
14,208 KB
testcase_31 AC 547 ms
14,208 KB
testcase_32 AC 519 ms
14,292 KB
testcase_33 AC 522 ms
14,208 KB
testcase_34 AC 523 ms
14,204 KB
testcase_35 AC 554 ms
14,196 KB
testcase_36 AC 536 ms
14,208 KB
testcase_37 AC 567 ms
14,236 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