結果

問題 No.2325 Skill Tree
ユーザー shop_oneshop_one
提出日時 2023-05-28 14:27:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 407 ms / 3,000 ms
コード長 1,625 bytes
コンパイル時間 1,397 ms
コンパイル使用メモリ 123,900 KB
実行使用メモリ 19,168 KB
最終ジャッジ日時 2024-06-08 05:28:49
合計ジャッジ時間 15,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 190 ms
5,376 KB
testcase_08 AC 108 ms
9,088 KB
testcase_09 AC 212 ms
7,168 KB
testcase_10 AC 136 ms
12,928 KB
testcase_11 AC 203 ms
10,368 KB
testcase_12 AC 366 ms
17,408 KB
testcase_13 AC 358 ms
17,408 KB
testcase_14 AC 367 ms
17,408 KB
testcase_15 AC 380 ms
17,280 KB
testcase_16 AC 373 ms
17,280 KB
testcase_17 AC 362 ms
17,408 KB
testcase_18 AC 352 ms
17,408 KB
testcase_19 AC 360 ms
17,280 KB
testcase_20 AC 357 ms
17,280 KB
testcase_21 AC 356 ms
17,408 KB
testcase_22 AC 350 ms
17,408 KB
testcase_23 AC 353 ms
17,408 KB
testcase_24 AC 364 ms
17,280 KB
testcase_25 AC 365 ms
17,408 KB
testcase_26 AC 358 ms
17,408 KB
testcase_27 AC 397 ms
19,164 KB
testcase_28 AC 394 ms
19,168 KB
testcase_29 AC 407 ms
19,040 KB
testcase_30 AC 383 ms
19,044 KB
testcase_31 AC 397 ms
19,036 KB
testcase_32 AC 356 ms
18,652 KB
testcase_33 AC 368 ms
19,040 KB
testcase_34 AC 357 ms
19,044 KB
testcase_35 AC 381 ms
18,780 KB
testcase_36 AC 379 ms
18,524 KB
testcase_37 AC 399 ms
19,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// I SELL YOU...! 
#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<queue>
#include<chrono>
#include<iomanip>
#include<map>
#include<set>
using namespace std;
using ll = int;
using P = pair<ll,ll>;
using TP = tuple<ll,ll,ll>;
void init_io(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(18);
}
ll calc(int i, vector<ll> &dp, vector<ll> &a, vector<vector<ll>> &G, vector<ll> &arr) {
  if (dp[i] != -1) return dp[i];
  if (arr[i]) {
    return dp[i] = -2;
  }
  arr[i] = 1;
  ll tmp = a[i];
  for(auto nv: G[i]) {
    ll res = calc(nv, dp, a, G, arr);
    if (res == -2) {
      tmp = res;
      break;
    }
    tmp = max(res, tmp);
  }
  arr[i] = 0;
  return dp[i] = tmp;
}
signed main(){
  init_io();
  ll n;
  cin >> n;
  vector<ll> a(n);
  vector<vector<ll>> G(n, vector<ll>());
  vector<ll> found(n, false);
  vector<ll> dp(n, -1);
  vector<ll> arr(n, 0);
  a[0] = 0;
  dp[0] = 0;
  for (int i=1;i<n;i++) {
    ll x, y;
    cin >> y >> x;
    x--;
    G[i].push_back(x);
    a[i] = y;
  }
  vector<ll> copy;
  map<ll, ll> mp;
  copy.push_back(0);
  for (int i=1;i<n;i++) {
    int tmp = calc(i, dp, a, G, arr);
    if (tmp != -2) {
      copy.push_back(tmp);
    }
  }
  sort(copy.begin(), copy.end());
  for(int i=0;i<copy.size();i++) {
    mp[copy[i]] = i+1;
  }
  int q;
  cin >> q;
  for (int i=0;i<q;i++) {
    int x,y;
    cin >> x >> y;
    if (x == 1) {
      auto itr = mp.upper_bound(y);
      itr--;
      cout << itr->second << endl;
    }
    if (x == 2) {
      if (dp[y-1] == -2) dp[y-1] = -1;
      cout << dp[y-1] << endl;
    }
  }
}
0