結果

問題 No.2290 UnUnion Find
ユーザー i_takui_taku
提出日時 2023-05-17 09:58:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 1,188 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 108,672 KB
最終ジャッジ日時 2024-12-15 05:24:50
合計ジャッジ時間 17,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 186 ms
91,936 KB
testcase_03 AC 204 ms
90,752 KB
testcase_04 AC 193 ms
91,264 KB
testcase_05 AC 194 ms
91,136 KB
testcase_06 AC 190 ms
91,008 KB
testcase_07 AC 191 ms
91,008 KB
testcase_08 AC 190 ms
90,880 KB
testcase_09 AC 189 ms
90,752 KB
testcase_10 AC 191 ms
90,880 KB
testcase_11 AC 195 ms
91,392 KB
testcase_12 AC 206 ms
91,008 KB
testcase_13 AC 207 ms
90,752 KB
testcase_14 AC 193 ms
91,136 KB
testcase_15 AC 193 ms
90,948 KB
testcase_16 AC 191 ms
91,120 KB
testcase_17 AC 206 ms
90,880 KB
testcase_18 AC 207 ms
90,752 KB
testcase_19 AC 335 ms
92,800 KB
testcase_20 AC 307 ms
108,672 KB
testcase_21 AC 251 ms
92,728 KB
testcase_22 AC 281 ms
90,876 KB
testcase_23 AC 280 ms
91,096 KB
testcase_24 AC 337 ms
99,840 KB
testcase_25 AC 261 ms
90,100 KB
testcase_26 AC 334 ms
103,276 KB
testcase_27 AC 330 ms
100,728 KB
testcase_28 AC 308 ms
90,840 KB
testcase_29 AC 323 ms
97,536 KB
testcase_30 AC 253 ms
90,944 KB
testcase_31 AC 319 ms
94,976 KB
testcase_32 AC 263 ms
89,760 KB
testcase_33 AC 303 ms
90,868 KB
testcase_34 AC 303 ms
108,544 KB
testcase_35 AC 323 ms
102,912 KB
testcase_36 AC 263 ms
89,228 KB
testcase_37 AC 298 ms
90,896 KB
testcase_38 AC 278 ms
89,380 KB
testcase_39 AC 289 ms
90,000 KB
testcase_40 AC 328 ms
100,480 KB
testcase_41 AC 267 ms
90,656 KB
testcase_42 AC 319 ms
92,800 KB
testcase_43 AC 328 ms
90,880 KB
testcase_44 AC 196 ms
90,948 KB
testcase_45 AC 194 ms
91,008 KB
testcase_46 AC 203 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def main():
    N, Q = map(int, input().split())
    uf = UnionFind(N)
    ans = []
    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
            ans.append(uf.ans(v))
    print(*ans, sep='\n')


class UnionFind:
    def __init__(self, n):
        self.parent = [-1] * n
        self.parents = set(range(n))

    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.parents.discard(y)

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

    def ans(self, y):
        x = self.find(y)
        for p in self.parents:
            if x != p:
                return p + 1
        return -1


main()
0