結果
問題 | No.2325 Skill Tree |
ユーザー | lloyz |
提出日時 | 2023-06-04 21:27:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,004 bytes |
コンパイル時間 | 435 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 246,804 KB |
最終ジャッジ日時 | 2024-06-09 04:06:55 |
合計ジャッジ時間 | 37,755 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
54,848 KB |
testcase_01 | AC | 35 ms
55,344 KB |
testcase_02 | WA | - |
testcase_03 | AC | 37 ms
54,888 KB |
testcase_04 | AC | 35 ms
55,656 KB |
testcase_05 | WA | - |
testcase_06 | AC | 35 ms
55,628 KB |
testcase_07 | AC | 428 ms
106,284 KB |
testcase_08 | AC | 632 ms
140,284 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 802 ms
154,928 KB |
testcase_12 | AC | 1,217 ms
246,376 KB |
testcase_13 | AC | 1,154 ms
230,764 KB |
testcase_14 | AC | 1,257 ms
234,248 KB |
testcase_15 | WA | - |
testcase_16 | AC | 1,175 ms
228,972 KB |
testcase_17 | AC | 1,002 ms
244,080 KB |
testcase_18 | AC | 1,020 ms
231,044 KB |
testcase_19 | AC | 1,000 ms
243,956 KB |
testcase_20 | WA | - |
testcase_21 | AC | 979 ms
228,476 KB |
testcase_22 | AC | 1,361 ms
229,616 KB |
testcase_23 | AC | 1,469 ms
246,804 KB |
testcase_24 | AC | 1,259 ms
234,616 KB |
testcase_25 | AC | 1,191 ms
228,596 KB |
testcase_26 | AC | 1,278 ms
246,128 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 1,232 ms
221,104 KB |
testcase_36 | AC | 1,264 ms
221,408 KB |
testcase_37 | AC | 1,253 ms
215,640 KB |
ソースコード
from collections import defaultdict class UnionFind(): def __init__(self, n): ''' UnionFindクラス。nは要素数を表す。 ''' self.n = n self.parents = [-1] * n def find(self, x): ''' 要素xを含む集合の親を見つける関数。 ''' if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): ''' 要素xを含む集合と要素yを含む集合を合体する関数。 基本的には、要素数が多い集合に統合される。 要素数が同じときは要素yを含む集合に統合される。 ''' x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): ''' 要素xを含む集合の要素数を出す関数。 ''' return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) n = int(input()) L = [list(map(int, input().split())) + [i + 2] for i in range(n - 1)] L.sort(key=lambda x: x[0]) C = [set([i]) for i in range(n + 1)] M = [-1 for _ in range(n + 1)] M[1] = 0 q = int(input()) X, Y = [], [] for i in range(q): op, d = map(int, input().split()) if op == 1: X.append((d, i)) else: Y.append((d, i)) X.sort(key=lambda x: x[0]) UF = UnionFind(n + 1) ANS = [-1 for _ in range(q)] xi = 0 for i in range(n - 1): nl, x, y = L[i] root1 = UF.find(1) while xi < len(X) and X[xi][0] < nl: ANS[X[xi][1]] = len(C[root1]) xi += 1 xroot = UF.find(x) yroot = UF.find(y) UF.union(x, y) root = UF.find(x) if root == xroot: C[xroot] |= C[yroot] else: C[yroot] |= C[xroot] root1 = UF.find(1) if root1 == root: if root1 == xroot: for ym in C[yroot]: M[ym] = nl elif root1 == yroot: for xm in C[xroot]: M[xm] = nl root1 = UF.find(1) while xi < len(X): ANS[X[xi][1]] = len(C[root1]) xi += 1 if xi < len(X): cl = X[xi][0] for yi in range(len(Y)): m, i = Y[yi] ANS[i] = M[m] print(*ANS, sep='\n')