結果

問題 No.2290 UnUnion Find
ユーザー AkariAkari
提出日時 2023-05-05 21:48:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 1,258 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,928 KB
最終ジャッジ日時 2024-05-02 15:52:53
合計ジャッジ時間 18,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 187 ms
88,696 KB
testcase_03 AC 241 ms
90,880 KB
testcase_04 AC 254 ms
90,624 KB
testcase_05 AC 241 ms
91,008 KB
testcase_06 AC 253 ms
91,392 KB
testcase_07 AC 253 ms
91,392 KB
testcase_08 AC 252 ms
91,136 KB
testcase_09 AC 259 ms
91,008 KB
testcase_10 AC 258 ms
91,136 KB
testcase_11 AC 256 ms
91,008 KB
testcase_12 AC 246 ms
90,624 KB
testcase_13 AC 251 ms
91,008 KB
testcase_14 AC 255 ms
91,136 KB
testcase_15 AC 251 ms
90,624 KB
testcase_16 AC 256 ms
90,880 KB
testcase_17 AC 259 ms
91,008 KB
testcase_18 AC 252 ms
91,392 KB
testcase_19 AC 311 ms
93,312 KB
testcase_20 AC 323 ms
108,928 KB
testcase_21 AC 253 ms
89,292 KB
testcase_22 AC 278 ms
91,588 KB
testcase_23 AC 275 ms
91,708 KB
testcase_24 AC 315 ms
99,840 KB
testcase_25 AC 266 ms
90,612 KB
testcase_26 AC 320 ms
104,960 KB
testcase_27 AC 324 ms
99,968 KB
testcase_28 AC 291 ms
89,216 KB
testcase_29 AC 314 ms
97,664 KB
testcase_30 AC 253 ms
89,844 KB
testcase_31 AC 317 ms
95,232 KB
testcase_32 AC 279 ms
90,700 KB
testcase_33 AC 301 ms
89,940 KB
testcase_34 AC 329 ms
108,800 KB
testcase_35 AC 329 ms
105,088 KB
testcase_36 AC 272 ms
91,184 KB
testcase_37 AC 296 ms
90,376 KB
testcase_38 AC 281 ms
91,224 KB
testcase_39 AC 289 ms
90,504 KB
testcase_40 AC 327 ms
100,352 KB
testcase_41 AC 272 ms
91,528 KB
testcase_42 AC 309 ms
92,544 KB
testcase_43 AC 305 ms
91,136 KB
testcase_44 AC 239 ms
91,008 KB
testcase_45 AC 247 ms
91,136 KB
testcase_46 AC 253 ms
90,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys



def main():
    input = sys.stdin.readline
    n, q = map(int, input().split())
    uf = [-1] * n
    leaders = set(range(n))

    def find(x):
        nonlocal uf
        y = x
        while uf[x] >= 0: x = uf[x]
        while uf[y] >= 0:
            z = uf[y]
            uf[y] = x
            y = z
        return x

    def union(x, y):
        nonlocal uf, leaders
        x, y = find(x), find(y)
        if x == y: return False
        if uf[x] > uf[y]: x, y = y, x
        uf[x] += uf[y]
        uf[y] = x
        leaders.remove(y)
        return True

    ans = []
    tmp = None
    for i in range(q):
        t, *x = map(int, input().split())
        if t == 1:
            a, b = x
            union(a - 1, b - 1)
        else:
            a = x[0] - 1
            a = find(a)
            if len(leaders) == 1:
                ans.append(-1)
            else:
                b = leaders.pop()
                if b == a:
                    tmp = b
                    b = leaders.pop()
                ans.append(b + 1)
                leaders.add(b)
                if tmp is not None:
                    leaders.add(tmp)
                    tmp = None
    print('\n'.join(map(str, ans)))




if __name__ == '__main__':
    main()
0