結果

問題 No.2290 UnUnion Find
ユーザー noriocnorioc
提出日時 2023-05-10 04:03:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,210 ms / 2,000 ms
コード長 1,703 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 112,768 KB
最終ジャッジ日時 2024-05-04 20:38:20
合計ジャッジ時間 36,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 485 ms
77,696 KB
testcase_03 AC 423 ms
93,568 KB
testcase_04 AC 435 ms
93,696 KB
testcase_05 AC 440 ms
93,824 KB
testcase_06 AC 423 ms
93,568 KB
testcase_07 AC 496 ms
93,184 KB
testcase_08 AC 451 ms
93,440 KB
testcase_09 AC 495 ms
93,440 KB
testcase_10 AC 423 ms
93,696 KB
testcase_11 AC 498 ms
93,696 KB
testcase_12 AC 479 ms
93,440 KB
testcase_13 AC 422 ms
93,440 KB
testcase_14 AC 444 ms
93,440 KB
testcase_15 AC 455 ms
93,440 KB
testcase_16 AC 432 ms
93,568 KB
testcase_17 AC 449 ms
93,824 KB
testcase_18 AC 463 ms
93,696 KB
testcase_19 AC 870 ms
96,128 KB
testcase_20 AC 750 ms
112,128 KB
testcase_21 AC 654 ms
80,324 KB
testcase_22 AC 779 ms
84,736 KB
testcase_23 AC 795 ms
84,480 KB
testcase_24 AC 698 ms
102,528 KB
testcase_25 AC 749 ms
81,792 KB
testcase_26 AC 713 ms
106,112 KB
testcase_27 AC 838 ms
103,168 KB
testcase_28 AC 788 ms
90,752 KB
testcase_29 AC 852 ms
100,096 KB
testcase_30 AC 745 ms
81,368 KB
testcase_31 AC 782 ms
97,536 KB
testcase_32 AC 762 ms
83,424 KB
testcase_33 AC 808 ms
89,472 KB
testcase_34 AC 731 ms
112,768 KB
testcase_35 AC 861 ms
106,368 KB
testcase_36 AC 851 ms
82,688 KB
testcase_37 AC 910 ms
87,936 KB
testcase_38 AC 1,210 ms
82,688 KB
testcase_39 AC 750 ms
85,376 KB
testcase_40 AC 878 ms
103,552 KB
testcase_41 AC 782 ms
82,172 KB
testcase_42 AC 839 ms
95,104 KB
testcase_43 AC 880 ms
93,056 KB
testcase_44 AC 430 ms
93,312 KB
testcase_45 AC 475 ms
93,184 KB
testcase_46 AC 527 ms
93,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.data = [-1] * (n + 1)
        self.nexts = [-1] * (n + 1) # 次の要素(なければ-1)
        self.tails = list(range(n + 1)) # 末尾の要素

    def root(self, a: int) -> int:
        if self.data[a] < 0: return a
        self.data[a] = self.root(self.data[a])
        return self.data[a]

    def unite(self, a: int, b: int) -> bool:
        pa = self.root(a)
        pb = self.root(b)
        if pa == pb: return False
        if self.data[pa] > self.data[pb]:
            pa, pb = pb, pa
        self.data[pa] += self.data[pb] # pa を pb をつなげる
        self.data[pb] = pa
        # pa の末尾に pb を繋げる
        self.nexts[self.tails[pa]] = pb
        self.tails[pa] = self.tails[pb]
        return True

    def issame(self, a: int, b: int) -> bool:
        return self.root(a) == self.root(b)

    def size(self, a: int) -> int:
        """a が属する集合のサイズ"""
        return -self.data[self.root(a)]

    def group(self, a):
        """a が属する集合"""
        v = self.root(a)
        while v != -1:
            yield v
            v = self.nexts[v]


N, Q = map(int, input().split())
leaders = set(range(1, N+1))
uf = UnionFind(N+10)
for _ in range(Q):
    t, *a = map(int, input().split())
    if t == 1:
        u, v = a
        u = uf.root(u)
        v = uf.root(v)
        uf.unite(u, v)
        r = uf.root(u)
        if r != u: leaders.discard(u)
        if r != v: leaders.discard(v)
    elif t == 2:
        v = a[0]
        r = uf.root(v)
        for x in leaders:
            if r != uf.root(x):
                print(x)
                break
        else:
            print(-1)
0