結果

問題 No.2325 Skill Tree
ユーザー lloyzlloyz
提出日時 2023-06-04 21:22:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 3,029 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 247,972 KB
最終ジャッジ日時 2024-06-09 04:06:01
合計ジャッジ時間 46,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,636 KB
testcase_01 AC 44 ms
55,324 KB
testcase_02 AC 43 ms
55,416 KB
testcase_03 AC 44 ms
56,132 KB
testcase_04 AC 43 ms
55,372 KB
testcase_05 AC 43 ms
55,900 KB
testcase_06 AC 43 ms
55,412 KB
testcase_07 AC 520 ms
106,108 KB
testcase_08 AC 718 ms
139,716 KB
testcase_09 WA -
testcase_10 AC 1,023 ms
178,192 KB
testcase_11 AC 1,006 ms
157,004 KB
testcase_12 AC 1,587 ms
247,972 KB
testcase_13 AC 1,446 ms
218,012 KB
testcase_14 AC 1,546 ms
240,648 KB
testcase_15 AC 1,549 ms
239,824 KB
testcase_16 AC 1,531 ms
244,328 KB
testcase_17 AC 1,307 ms
242,920 KB
testcase_18 AC 1,359 ms
228,832 KB
testcase_19 AC 1,253 ms
240,868 KB
testcase_20 WA -
testcase_21 AC 1,239 ms
225,936 KB
testcase_22 AC 1,664 ms
228,860 KB
testcase_23 AC 1,897 ms
245,340 KB
testcase_24 AC 1,717 ms
225,608 KB
testcase_25 AC 1,496 ms
228,080 KB
testcase_26 AC 1,563 ms
245,368 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,483 ms
225,996 KB
testcase_36 AC 1,580 ms
226,892 KB
testcase_37 AC 1,538 ms
210,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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
if len(X) > 0:
    cl = X[xi][0]
else:
    cl = 0
for i in range(n - 1):
    nl, x, y = L[i]
    root1 = UF.find(1)
    while xi < len(X) and cl < nl:
        ANS[X[xi][1]] = len(C[root1])
        xi += 1
        if xi < len(X):
            cl = X[xi][0]
    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]
    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')
0