結果

問題 No.2325 Skill Tree
ユーザー lloyzlloyz
提出日時 2023-06-04 21:46:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,873 ms / 3,000 ms
コード長 3,028 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 252,872 KB
最終ジャッジ日時 2024-06-09 04:11:04
合計ジャッジ時間 48,643 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,528 KB
testcase_01 AC 44 ms
54,272 KB
testcase_02 AC 44 ms
54,656 KB
testcase_03 AC 42 ms
54,528 KB
testcase_04 AC 41 ms
54,144 KB
testcase_05 AC 42 ms
54,272 KB
testcase_06 AC 45 ms
54,016 KB
testcase_07 AC 563 ms
107,040 KB
testcase_08 AC 817 ms
135,920 KB
testcase_09 AC 781 ms
125,212 KB
testcase_10 AC 1,119 ms
184,516 KB
testcase_11 AC 1,043 ms
157,668 KB
testcase_12 AC 1,615 ms
252,872 KB
testcase_13 AC 1,507 ms
226,236 KB
testcase_14 AC 1,730 ms
246,732 KB
testcase_15 AC 1,716 ms
243,904 KB
testcase_16 AC 1,572 ms
246,580 KB
testcase_17 AC 1,321 ms
249,408 KB
testcase_18 AC 1,366 ms
224,512 KB
testcase_19 AC 1,347 ms
249,968 KB
testcase_20 AC 1,433 ms
238,456 KB
testcase_21 AC 1,273 ms
219,644 KB
testcase_22 AC 1,719 ms
219,516 KB
testcase_23 AC 1,873 ms
250,228 KB
testcase_24 AC 1,675 ms
232,952 KB
testcase_25 AC 1,569 ms
227,436 KB
testcase_26 AC 1,659 ms
237,440 KB
testcase_27 AC 1,573 ms
227,052 KB
testcase_28 AC 1,445 ms
223,184 KB
testcase_29 AC 1,462 ms
221,336 KB
testcase_30 AC 1,468 ms
214,516 KB
testcase_31 AC 1,447 ms
220,136 KB
testcase_32 AC 1,276 ms
228,336 KB
testcase_33 AC 1,268 ms
214,932 KB
testcase_34 AC 1,216 ms
222,572 KB
testcase_35 AC 1,555 ms
226,900 KB
testcase_36 AC 1,630 ms
237,536 KB
testcase_37 AC 1,649 ms
224,856 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
for i in range(n - 1):
    nl, x, y = L[i]
    pre_root1 = UF.find(1)
    while xi < len(X) and X[xi][0] < nl:
        ANS[X[xi][1]] = len(C[pre_root1])
        xi += 1
    xroot = UF.find(x)
    yroot = UF.find(y)
    UF.union(x, y)
    root = UF.find(x)
    root1 = UF.find(1)
    if root1 == root:
        if pre_root1 == xroot:
            for ym in C[yroot]:
                M[ym] = nl
        elif pre_root1 == yroot:
            for xm in C[xroot]:
                M[xm] = nl
    if root == xroot:
        C[xroot] |= C[yroot]
        C[yroot] = set()
    else:
        C[yroot] |= C[xroot]
        C[xroot] = set()
root1 = UF.find(1)
while xi < len(X):
    ANS[X[xi][1]] = len(C[root1])
    xi += 1
for yi in range(len(Y)):
    m, i = Y[yi]
    ANS[i] = M[m]
print(*ANS, sep='\n')
0