結果

問題 No.2290 UnUnion Find
ユーザー i_takui_taku
提出日時 2023-05-17 09:44:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,239 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 130,904 KB
最終ジャッジ日時 2024-05-08 21:35:49
合計ジャッジ時間 7,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,088 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 292 ms
90,600 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
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 #

import sys
input = sys.stdin.readline


def main():
    N, Q = map(int, input().split())
    uf = UnionFind(N)
    ans = []
    total = set(range(N))
    for _ in range(Q):
        query = list(map(int, input().split()))
        if query[0] == 1:
            u, v = query[1:]
            u, v = u - 1, v - 1
            uf.union(u, v)
        else:
            v = query[1] - 1
            u = uf.find(v)
            res = total - uf.groups[u]
            ans.append(res.pop() + 1 if res else -1)
    print(*ans, sep='\n')


class UnionFind:
    def __init__(self, n):
        self.parent = [-1] * n
        self.groups = dict()
        for i in range(n):
            self.groups[i] = {i}

    def find(self, x):
        if self.parent[x] < 0:
            return x
        self.parent[x] = self.find(self.parent[x])
        return self.parent[x]

    def union(self, x, y):
        x, y = self.find(x), self.find(y)
        if x == y:
            return
        if self.parent[y] < self.parent[x]:
            x, y = y, x
        self.parent[x] += self.parent[y]
        self.parent[y] = x
        self.groups[x] |= self.groups[y]
        del self.groups[y]

    def same(self, x, y):
        return self.find(x) == self.find(y)



main()
0