結果

問題 No.2325 Skill Tree
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-12-06 13:13:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 3,000 ms
コード長 1,050 bytes
コンパイル時間 2,752 ms
コンパイル使用メモリ 218,848 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-12-06 13:13:56
合計ジャッジ時間 12,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 38 ms
5,248 KB
testcase_08 AC 39 ms
7,296 KB
testcase_09 AC 48 ms
6,016 KB
testcase_10 AC 57 ms
9,984 KB
testcase_11 AC 59 ms
7,936 KB
testcase_12 AC 109 ms
12,800 KB
testcase_13 AC 106 ms
12,928 KB
testcase_14 AC 113 ms
12,928 KB
testcase_15 AC 111 ms
12,928 KB
testcase_16 AC 117 ms
12,800 KB
testcase_17 AC 115 ms
12,800 KB
testcase_18 AC 111 ms
12,928 KB
testcase_19 AC 106 ms
12,928 KB
testcase_20 AC 108 ms
12,800 KB
testcase_21 AC 116 ms
12,800 KB
testcase_22 AC 113 ms
12,928 KB
testcase_23 AC 112 ms
12,800 KB
testcase_24 AC 110 ms
12,928 KB
testcase_25 AC 108 ms
12,800 KB
testcase_26 AC 111 ms
12,928 KB
testcase_27 AC 149 ms
13,824 KB
testcase_28 AC 151 ms
13,696 KB
testcase_29 AC 152 ms
13,696 KB
testcase_30 AC 143 ms
13,568 KB
testcase_31 AC 143 ms
13,568 KB
testcase_32 AC 130 ms
13,312 KB
testcase_33 AC 136 ms
13,568 KB
testcase_34 AC 135 ms
13,824 KB
testcase_35 AC 157 ms
13,184 KB
testcase_36 AC 134 ms
13,056 KB
testcase_37 AC 155 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	int n;
	cin >> n;
	vector<vector<pair<int, int>>> g(n);
	for (int i = 1; i < n; i++) {
		int l, a;
		cin >> l >> a;
		a--;
		g[a].push_back({i, l});
	}
	deque<int> dq{0};
	vector<int> dp(n, -1);
	dp[0] = 0;
	while (!dq.empty()) {
		int v = dq.front();
		dq.pop_front();
		for (auto [u, l] : g[v]) {
			if (dp[u] == -1) {
				dp[u] = max(dp[v], l);
				dq.push_back(u);
			}
		}
	}
	map<int, int> cnt;
	for (int i = 0; i < n; i++) {
		if (dp[i] != -1) {
			cnt[dp[i]]++;
		}
	}
	vector<pair<int, int>> cnts;
	for (auto [l, c] : cnt) {
		cnts.push_back({l, c});
	}
	for (int i = 1; i < cnts.size(); i++) {
		cnts[i].second += cnts[i - 1].second;
	}
	int q;
	cin >> q;
	for (; q--;) {
		int query, x;
		cin >> query >> x;
		if (query == 1) {
			auto it =
				lower_bound(cnts.begin(), cnts.end(), make_pair(x + 1, 0));
			cout << prev(it)->second << '\n';
		} else {
			cout << dp[x - 1] << "\n";
		}
	}
}
0