結果

問題 No.2290 UnUnion Find
ユーザー noriocnorioc
提出日時 2023-05-05 21:55:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 791 ms / 2,000 ms
コード長 1,743 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,384 KB
最終ジャッジ日時 2024-11-23 07:20:03
合計ジャッジ時間 33,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 523 ms
76,800 KB
testcase_03 AC 452 ms
93,056 KB
testcase_04 AC 475 ms
93,056 KB
testcase_05 AC 473 ms
93,312 KB
testcase_06 AC 472 ms
92,928 KB
testcase_07 AC 486 ms
93,200 KB
testcase_08 AC 475 ms
93,056 KB
testcase_09 AC 472 ms
93,312 KB
testcase_10 AC 446 ms
93,056 KB
testcase_11 AC 489 ms
92,928 KB
testcase_12 AC 470 ms
93,184 KB
testcase_13 AC 476 ms
93,312 KB
testcase_14 AC 483 ms
93,696 KB
testcase_15 AC 483 ms
93,056 KB
testcase_16 AC 464 ms
93,312 KB
testcase_17 AC 469 ms
93,312 KB
testcase_18 AC 488 ms
93,056 KB
testcase_19 AC 791 ms
95,104 KB
testcase_20 AC 727 ms
112,384 KB
testcase_21 AC 676 ms
79,300 KB
testcase_22 AC 733 ms
84,736 KB
testcase_23 AC 754 ms
85,120 KB
testcase_24 AC 775 ms
103,168 KB
testcase_25 AC 741 ms
81,280 KB
testcase_26 AC 771 ms
106,496 KB
testcase_27 AC 784 ms
103,552 KB
testcase_28 AC 767 ms
91,264 KB
testcase_29 AC 789 ms
99,968 KB
testcase_30 AC 714 ms
80,204 KB
testcase_31 AC 787 ms
98,176 KB
testcase_32 AC 752 ms
82,176 KB
testcase_33 AC 747 ms
89,344 KB
testcase_34 AC 716 ms
112,256 KB
testcase_35 AC 747 ms
106,112 KB
testcase_36 AC 748 ms
83,072 KB
testcase_37 AC 769 ms
88,832 KB
testcase_38 AC 756 ms
83,200 KB
testcase_39 AC 780 ms
86,272 KB
testcase_40 AC 782 ms
103,424 KB
testcase_41 AC 756 ms
81,408 KB
testcase_42 AC 790 ms
95,872 KB
testcase_43 AC 776 ms
93,184 KB
testcase_44 AC 483 ms
93,312 KB
testcase_45 AC 463 ms
93,056 KB
testcase_46 AC 481 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())
kinds = 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
        x = uf.root(u)
        y = uf.root(v)
        uf.unite(u, v)
        r = uf.root(u)
        if x != r: kinds.discard(x)
        if y != r: kinds.discard(y)
    elif t == 2:
        v = a[0]
        if uf.size(v) == N:
            print(-1)
        else:
            r = uf.root(v)
            for x in kinds:
                if r != uf.root(x):
                    print(x)
                    break
0