結果
問題 | No.2325 Skill Tree |
ユーザー | t98slider |
提出日時 | 2023-05-28 14:04:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 150 ms / 3,000 ms |
コード長 | 2,522 bytes |
コンパイル時間 | 1,679 ms |
コンパイル使用メモリ | 186,168 KB |
実行使用メモリ | 20,732 KB |
最終ジャッジ日時 | 2024-06-08 04:38:43 |
合計ジャッジ時間 | 9,409 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 40 ms
6,944 KB |
testcase_08 | AC | 49 ms
10,496 KB |
testcase_09 | AC | 54 ms
8,064 KB |
testcase_10 | AC | 77 ms
15,356 KB |
testcase_11 | AC | 70 ms
11,776 KB |
testcase_12 | AC | 141 ms
20,732 KB |
testcase_13 | AC | 141 ms
20,640 KB |
testcase_14 | AC | 149 ms
20,600 KB |
testcase_15 | AC | 143 ms
20,660 KB |
testcase_16 | AC | 139 ms
20,668 KB |
testcase_17 | AC | 143 ms
20,548 KB |
testcase_18 | AC | 144 ms
20,712 KB |
testcase_19 | AC | 143 ms
20,672 KB |
testcase_20 | AC | 150 ms
20,660 KB |
testcase_21 | AC | 145 ms
20,668 KB |
testcase_22 | AC | 138 ms
20,724 KB |
testcase_23 | AC | 137 ms
20,612 KB |
testcase_24 | AC | 137 ms
20,488 KB |
testcase_25 | AC | 137 ms
20,592 KB |
testcase_26 | AC | 135 ms
20,708 KB |
testcase_27 | AC | 141 ms
20,464 KB |
testcase_28 | AC | 139 ms
20,296 KB |
testcase_29 | AC | 138 ms
20,520 KB |
testcase_30 | AC | 137 ms
20,456 KB |
testcase_31 | AC | 145 ms
20,512 KB |
testcase_32 | AC | 136 ms
20,480 KB |
testcase_33 | AC | 140 ms
20,360 KB |
testcase_34 | AC | 148 ms
20,352 KB |
testcase_35 | AC | 148 ms
20,380 KB |
testcase_36 | AC | 149 ms
20,408 KB |
testcase_37 | AC | 145 ms
20,420 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; struct Kruskal_dsu { public: vector<vector<pair<int,int>>> pa; Kruskal_dsu() : _n(0) {} Kruskal_dsu(int n) : _n(n), parent_or_size(n, -1), dat(n, 1 << 30), pa(n) { for(int i = 0; i < n; i++){ pa[i].emplace_back(0, 1); } } bool merge(int u, int v, int w) { assert(0 <= u && u < _n); assert(0 <= v && v < _n); int x = leader(u), y = leader(v); if (x == y) return false; if (-parent_or_size[x] < -parent_or_size[y]) std::swap(x, y); parent_or_size[x] += parent_or_size[y]; parent_or_size[y] = x; pa[x].emplace_back(w, -parent_or_size[x]); dat[y] = w; return true; } bool same(int v, int u) { assert(0 <= v && v < _n); assert(0 <= u && u < _n); return leader(v) == leader(u); } int leader(int v) { assert(0 <= v && v < _n); while(parent_or_size[v] >= 0)v = parent_or_size[v]; return v; } int size(int v, int w){ //cerr << v << '\n'; while(dat[v] <= w) v = parent_or_size[v]; //cerr << v << '\n'; pair<int,int> tmp = {w + 1, -1}; int j = lower_bound(pa[v].begin(), pa[v].end(), tmp) - pa[v].begin() - 1; return pa[v][j].second; } int size(int v) { assert(0 <= v && v < _n); return -parent_or_size[leader(v)]; } int max_edge(int u, int v){ int ans = 0; while(u != v){ if (dat[u] > dat[v]) std::swap(u, v); ans = dat[u], u = parent_or_size[u]; if(u < 0)return -1; } return ans; } private: int _n; // root node: -1 * component size // otherwise: parent std::vector<int> parent_or_size, dat; }; int main(){ ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; vector<tuple<int,int,int>> a(N - 1); for(int i = 0; i + 1 < N; i++){ int l, v; cin >> l >> v; v--; a[i] = make_tuple(l, v, i + 1); } sort(a.begin(), a.end()); Kruskal_dsu uf(N); for(int i = 0; i + 1 < N; i++){ int u, v, l; tie(l, u, v) = a[i]; uf.merge(u, v, l); } int Q; cin >> Q; while(Q--){ int cmd, x; cin >> cmd >> x; if(cmd == 1){ cout << uf.size(0, x) << '\n'; }else{ x--; cout << uf.max_edge(0, x) << '\n'; } } }