結果

問題 No.2325 Skill Tree
ユーザー tanadaaatanadaaa
提出日時 2023-05-28 15:37:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,563 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 177,224 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-06-08 08:08:55
合計ジャッジ時間 19,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
16,768 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 606 ms
12,160 KB
testcase_17 AC 603 ms
12,160 KB
testcase_18 WA -
testcase_19 AC 589 ms
12,288 KB
testcase_20 WA -
testcase_21 AC 594 ms
12,288 KB
testcase_22 AC 610 ms
12,160 KB
testcase_23 AC 624 ms
12,160 KB
testcase_24 AC 621 ms
12,160 KB
testcase_25 AC 614 ms
12,160 KB
testcase_26 AC 597 ms
12,288 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using P = pair<int, int>;
using vi = vector<int>;
using vl = vector<long>;
using vll = vector<long long>;
using vs = vector<string>;
using vc = vector<char>;
using pll = pair<long long, long long>;
const int INF = 1e9;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)

struct edge {
  int to;
  int cost;
  edge(int t, int w) : to(t), cost(w) { }
};

using Graph = vector<vector<edge>>;

vector<bool> seen;
int xcount = 0,lx = 0;
void dfs1(const Graph &G, int v) {
    seen[v] = true;
    for (auto e : G[v]) { 
        if (seen[e.to]) continue;
        else if(e.cost <= lx){
          dfs1(G,e.to);
          xcount++;
        }
    }
}

int ycount = -1,ly = 0;
void dfs2(const Graph &G, int v) {
    seen[v] = true;
    for (auto e : G[v]) { 
        if (seen[e.to]) continue;
        else if(e.to == ly){
          ycount = max(ycount,e.cost);
          return;
        }
      else{
        ycount = max(ycount,e.cost);
        dfs2(G,e.to);
      }
    }
}


int main() {
  int n;
  cin >> n;
  vector<vector<edge>> g(n);
  rep(i,n-1){
    int l,a;
    cin >> l >> a;
    a--;
    g[a].push_back(edge(i+1,l));
  }
  
  int q;
  cin >> q;
  rep(iii,q){
    int t,x;
    cin >> t >> x;
    if(t == 1){
      seen.assign(n, false);
      xcount = 0;
      lx = x;
      dfs1(g,0);
      cout << xcount+1 << endl;
    }
    else{
      seen.assign(n, false);
      ycount = -1;
      x--;
      ly = x;
      dfs2(g,0);
      cout << ycount << endl;
    }
  }
  
}
0