結果

問題 No.2290 UnUnion Find
ユーザー yabityabit
提出日時 2023-06-30 14:19:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,957 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 109,680 KB
最終ジャッジ日時 2024-07-07 02:09:41
合計ジャッジ時間 24,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,776 KB
testcase_01 AC 35 ms
54,272 KB
testcase_02 AC 458 ms
77,568 KB
testcase_03 AC 380 ms
91,904 KB
testcase_04 AC 383 ms
91,904 KB
testcase_05 AC 385 ms
92,216 KB
testcase_06 AC 370 ms
91,904 KB
testcase_07 AC 388 ms
91,776 KB
testcase_08 AC 399 ms
91,776 KB
testcase_09 AC 395 ms
91,776 KB
testcase_10 AC 365 ms
92,160 KB
testcase_11 AC 387 ms
92,348 KB
testcase_12 AC 397 ms
92,160 KB
testcase_13 AC 410 ms
92,128 KB
testcase_14 AC 396 ms
92,160 KB
testcase_15 AC 397 ms
91,904 KB
testcase_16 AC 390 ms
91,904 KB
testcase_17 AC 419 ms
91,988 KB
testcase_18 AC 383 ms
91,904 KB
testcase_19 AC 947 ms
93,980 KB
testcase_20 AC 865 ms
109,680 KB
testcase_21 TLE -
testcase_22 AC 821 ms
84,116 KB
testcase_23 AC 792 ms
84,096 KB
testcase_24 AC 652 ms
100,608 KB
testcase_25 AC 882 ms
83,812 KB
testcase_26 AC 653 ms
104,064 KB
testcase_27 AC 752 ms
100,864 KB
testcase_28 AC 765 ms
90,368 KB
testcase_29 AC 804 ms
98,304 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
 # UnionFind(n) n:頂点数
 # parents:i番目の点が属する根 それ自身が根なら-1
 # find(x):xの属する根を再帰的に求める
 # unite(x,y):多い木に小さい木を結合
class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n
    def find(self, 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 = 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):
        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,Q = map(int, input().split())
uf = UnionFind(N)
roots = set(range(N))
for q in range(Q):
    L = list(map(int, input().split()))
    if L[0] == 1:
        uf.union(L[1]-1, L[2]-1)
        if L[1]-1 != uf.find(L[1]-1):
            roots.discard(L[1]-1)
        if L[2]-1 != uf.find(L[2]-1):
            roots.discard(L[2]-1)
    else:
        ret = -1
        for r in roots:
            if not uf.same(r, L[1]-1):
                ret = r+1
                break
        print(ret)
0