結果

問題 No.2290 UnUnion Find
ユーザー AEnAEn
提出日時 2023-07-26 00:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,187 ms / 2,000 ms
コード長 2,780 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 145,168 KB
最終ジャッジ日時 2024-10-02 17:02:40
合計ジャッジ時間 45,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
67,860 KB
testcase_01 AC 62 ms
67,860 KB
testcase_02 AC 506 ms
78,584 KB
testcase_03 AC 492 ms
108,904 KB
testcase_04 AC 499 ms
108,848 KB
testcase_05 AC 520 ms
108,660 KB
testcase_06 AC 513 ms
108,984 KB
testcase_07 AC 532 ms
108,492 KB
testcase_08 AC 527 ms
108,832 KB
testcase_09 AC 532 ms
109,304 KB
testcase_10 AC 519 ms
109,064 KB
testcase_11 AC 532 ms
108,996 KB
testcase_12 AC 531 ms
109,036 KB
testcase_13 AC 524 ms
108,788 KB
testcase_14 AC 538 ms
108,936 KB
testcase_15 AC 532 ms
108,808 KB
testcase_16 AC 533 ms
108,936 KB
testcase_17 AC 523 ms
108,800 KB
testcase_18 AC 534 ms
109,036 KB
testcase_19 AC 1,144 ms
112,712 KB
testcase_20 AC 1,029 ms
145,064 KB
testcase_21 AC 805 ms
81,960 KB
testcase_22 AC 1,013 ms
93,164 KB
testcase_23 AC 1,112 ms
93,092 KB
testcase_24 AC 968 ms
127,308 KB
testcase_25 AC 941 ms
88,400 KB
testcase_26 AC 901 ms
134,000 KB
testcase_27 AC 1,061 ms
127,264 KB
testcase_28 AC 1,048 ms
105,168 KB
testcase_29 AC 1,110 ms
122,084 KB
testcase_30 AC 858 ms
83,576 KB
testcase_31 AC 1,072 ms
116,896 KB
testcase_32 AC 963 ms
88,392 KB
testcase_33 AC 1,092 ms
102,488 KB
testcase_34 AC 914 ms
145,168 KB
testcase_35 AC 1,110 ms
133,880 KB
testcase_36 AC 996 ms
89,668 KB
testcase_37 AC 1,139 ms
99,476 KB
testcase_38 AC 990 ms
89,480 KB
testcase_39 AC 1,006 ms
95,288 KB
testcase_40 AC 1,075 ms
127,684 KB
testcase_41 AC 1,040 ms
86,972 KB
testcase_42 AC 1,131 ms
112,572 KB
testcase_43 AC 1,187 ms
109,432 KB
testcase_44 AC 529 ms
108,992 KB
testcase_45 AC 558 ms
108,848 KB
testcase_46 AC 594 ms
108,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List

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])

    def size(self, x) -> int:
        """xが属する連結成分のサイズを取得"""
        return -self.parent[self.root(x)]

    def all_sizes(self) -> List[int]:
        """全連結成分のサイズのリストを取得 O(N)"""
        sizes = []
        for i in range(self.n):
            size = self.parent[i]
            if size < 0:
                sizes.append(-size)
        return sizes
    
    def members(self, x) -> List[int]:
        """xが属するグループのリストを返す O(N)"""
        mem = []
        r = self.root(x)
        for i in range(self.n):
            if self.root(i) == r:
                mem.append(i)
        return mem

    def groups(self) -> List[List[int]]:
        """全連結成分の内容のリストを取得 O(N・α(N))"""
        groups = dict()
        for i in range(self.n):
            p = self.root(i)
            if not groups.get(p):
                groups[p] = []
            groups[p].append(i)
        return list(groups.values())

    @property
    def group_count(self) -> int:
        """連結成分の数を取得 O(1)"""
        return self.__group_coun

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