結果

問題 No.2290 UnUnion Find
ユーザー AkariAkari
提出日時 2023-05-05 21:48:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 1,258 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 108,800 KB
最終ジャッジ日時 2024-11-23 06:53:22
合計ジャッジ時間 17,412 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 188 ms
88,448 KB
testcase_03 AC 243 ms
91,136 KB
testcase_04 AC 249 ms
91,008 KB
testcase_05 AC 237 ms
90,752 KB
testcase_06 AC 249 ms
90,624 KB
testcase_07 AC 246 ms
90,624 KB
testcase_08 AC 242 ms
90,880 KB
testcase_09 AC 248 ms
90,880 KB
testcase_10 AC 249 ms
90,752 KB
testcase_11 AC 247 ms
90,624 KB
testcase_12 AC 247 ms
90,752 KB
testcase_13 AC 245 ms
90,880 KB
testcase_14 AC 244 ms
90,624 KB
testcase_15 AC 247 ms
90,624 KB
testcase_16 AC 227 ms
90,624 KB
testcase_17 AC 237 ms
91,008 KB
testcase_18 AC 244 ms
90,880 KB
testcase_19 AC 300 ms
92,544 KB
testcase_20 AC 312 ms
108,288 KB
testcase_21 AC 246 ms
89,560 KB
testcase_22 AC 256 ms
91,828 KB
testcase_23 AC 265 ms
91,204 KB
testcase_24 AC 302 ms
99,584 KB
testcase_25 AC 250 ms
90,744 KB
testcase_26 AC 308 ms
104,832 KB
testcase_27 AC 307 ms
99,840 KB
testcase_28 AC 289 ms
89,224 KB
testcase_29 AC 301 ms
97,024 KB
testcase_30 AC 243 ms
89,456 KB
testcase_31 AC 305 ms
94,848 KB
testcase_32 AC 259 ms
90,320 KB
testcase_33 AC 283 ms
89,800 KB
testcase_34 AC 311 ms
108,800 KB
testcase_35 AC 312 ms
104,832 KB
testcase_36 AC 276 ms
91,188 KB
testcase_37 AC 285 ms
90,512 KB
testcase_38 AC 257 ms
90,536 KB
testcase_39 AC 270 ms
90,116 KB
testcase_40 AC 302 ms
100,608 KB
testcase_41 AC 266 ms
91,280 KB
testcase_42 AC 286 ms
92,416 KB
testcase_43 AC 294 ms
91,392 KB
testcase_44 AC 233 ms
90,624 KB
testcase_45 AC 242 ms
91,264 KB
testcase_46 AC 244 ms
90,880 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