結果

問題 No.2290 UnUnion Find
ユーザー i_takui_taku
提出日時 2023-05-17 09:58:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 1,188 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,800 KB
最終ジャッジ日時 2024-05-08 21:43:37
合計ジャッジ時間 15,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 164 ms
92,192 KB
testcase_03 AC 189 ms
90,880 KB
testcase_04 AC 178 ms
91,264 KB
testcase_05 AC 179 ms
90,880 KB
testcase_06 AC 167 ms
90,880 KB
testcase_07 AC 173 ms
90,880 KB
testcase_08 AC 177 ms
90,880 KB
testcase_09 AC 184 ms
90,752 KB
testcase_10 AC 165 ms
91,136 KB
testcase_11 AC 176 ms
91,008 KB
testcase_12 AC 181 ms
90,880 KB
testcase_13 AC 177 ms
91,392 KB
testcase_14 AC 167 ms
90,880 KB
testcase_15 AC 179 ms
91,136 KB
testcase_16 AC 170 ms
90,752 KB
testcase_17 AC 178 ms
90,880 KB
testcase_18 AC 181 ms
91,264 KB
testcase_19 AC 300 ms
92,928 KB
testcase_20 AC 283 ms
108,672 KB
testcase_21 AC 245 ms
92,852 KB
testcase_22 AC 254 ms
90,876 KB
testcase_23 AC 251 ms
91,088 KB
testcase_24 AC 302 ms
99,840 KB
testcase_25 AC 237 ms
90,040 KB
testcase_26 AC 294 ms
103,424 KB
testcase_27 AC 297 ms
100,352 KB
testcase_28 AC 287 ms
91,024 KB
testcase_29 AC 289 ms
97,536 KB
testcase_30 AC 230 ms
90,832 KB
testcase_31 AC 284 ms
94,848 KB
testcase_32 AC 232 ms
89,892 KB
testcase_33 AC 266 ms
90,996 KB
testcase_34 AC 275 ms
108,800 KB
testcase_35 AC 290 ms
103,040 KB
testcase_36 AC 241 ms
89,488 KB
testcase_37 AC 284 ms
91,148 KB
testcase_38 AC 253 ms
89,244 KB
testcase_39 AC 263 ms
90,132 KB
testcase_40 AC 297 ms
100,224 KB
testcase_41 AC 252 ms
90,784 KB
testcase_42 AC 291 ms
92,928 KB
testcase_43 AC 293 ms
91,008 KB
testcase_44 AC 181 ms
90,880 KB
testcase_45 AC 175 ms
91,008 KB
testcase_46 AC 183 ms
91,008 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