結果

問題 No.2290 UnUnion Find
ユーザー AEnAEn
提出日時 2023-07-26 00:20:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 1,655 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 143,872 KB
最終ジャッジ日時 2024-10-02 17:03:17
合計ジャッジ時間 22,802 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 125 ms
76,928 KB
testcase_03 AC 215 ms
106,880 KB
testcase_04 AC 230 ms
107,264 KB
testcase_05 AC 237 ms
107,008 KB
testcase_06 AC 232 ms
106,880 KB
testcase_07 AC 246 ms
107,188 KB
testcase_08 AC 250 ms
107,008 KB
testcase_09 AC 253 ms
107,008 KB
testcase_10 AC 236 ms
107,392 KB
testcase_11 AC 254 ms
107,264 KB
testcase_12 AC 242 ms
107,200 KB
testcase_13 AC 240 ms
107,280 KB
testcase_14 AC 247 ms
107,296 KB
testcase_15 AC 252 ms
107,008 KB
testcase_16 AC 230 ms
107,264 KB
testcase_17 AC 242 ms
107,392 KB
testcase_18 AC 247 ms
107,520 KB
testcase_19 AC 634 ms
111,232 KB
testcase_20 AC 509 ms
143,872 KB
testcase_21 AC 290 ms
80,248 KB
testcase_22 AC 455 ms
91,520 KB
testcase_23 AC 528 ms
91,904 KB
testcase_24 AC 510 ms
125,824 KB
testcase_25 AC 413 ms
86,600 KB
testcase_26 AC 484 ms
132,352 KB
testcase_27 AC 576 ms
126,208 KB
testcase_28 AC 521 ms
104,064 KB
testcase_29 AC 592 ms
120,548 KB
testcase_30 AC 362 ms
81,536 KB
testcase_31 AC 566 ms
115,968 KB
testcase_32 AC 412 ms
86,784 KB
testcase_33 AC 550 ms
101,248 KB
testcase_34 AC 483 ms
143,488 KB
testcase_35 AC 597 ms
132,328 KB
testcase_36 AC 452 ms
88,320 KB
testcase_37 AC 600 ms
98,048 KB
testcase_38 AC 448 ms
87,808 KB
testcase_39 AC 461 ms
93,696 KB
testcase_40 AC 607 ms
126,592 KB
testcase_41 AC 495 ms
85,356 KB
testcase_42 AC 587 ms
111,360 KB
testcase_43 AC 643 ms
107,648 KB
testcase_44 AC 247 ms
107,008 KB
testcase_45 AC 259 ms
107,264 KB
testcase_46 AC 281 ms
107,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    """0-indexed"""
    def __init__(self, n):
        self.n = n
        self.parent = [-1] * n
        self.__group_count = n

    def unite(self, x, y) -> bool:
        """xとyをマージ"""
        x = self.root(x)
        y = self.root(y)
        if x == y:
            return False

        self.__group_count -= 1

        if self.parent[x] > self.parent[y]:
            x, y = y, x

        self.parent[x] += self.parent[y]
        self.parent[y] = x
        return True

    def is_same(self, x, y) -> bool:
        """xとyが同じ連結成分か判定"""
        return self.root(x) == self.root(y)

    def root(self, x) -> int:
        """xの根を取得"""
        if self.parent[x] < 0:
            return x
        else:
            # 経路圧縮あり
            # self.parent[x] = self.root(self.parent[x])
            # return self.parent[x]
            # 経路圧縮なし
            return self.root(self.parent[x])

import sys
input = sys.stdin.readline
N,Q = map(int, input().split())
d = {}
s = set()
uf = UnionFind(N)
for i in range(N):
    d[uf.root(i)] = i
    s.add(i)

for i in range(Q):
    q = list(map(int, input().split()))
    if q[0]==1:
        a,b = q[1]-1,q[2]-1
        ra,rb = uf.root(a),uf.root(b)
        if ra==rb:continue
        uf.unite(a,b)
        rab = uf.root(a)
        if ra==rab:
            s.remove(d[rb])
        else:
            s.remove(d[ra])
    else:
        a = q[1]-1
        if len(s)==1:
            print(-1)
        else:
            r = uf.root(a)
            for s_ in s:
                if s_!=d[r]:
                    print(s_+1)
                    break

0