結果

問題 No.2290 UnUnion Find
ユーザー ntudantuda
提出日時 2023-05-06 12:33:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 938 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,348 KB
最終ジャッジ日時 2024-11-23 21:16:38
合計ジャッジ時間 34,182 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 499 ms
76,672 KB
testcase_03 AC 388 ms
91,728 KB
testcase_04 AC 416 ms
91,472 KB
testcase_05 AC 429 ms
91,136 KB
testcase_06 AC 426 ms
91,520 KB
testcase_07 AC 420 ms
91,488 KB
testcase_08 AC 418 ms
91,136 KB
testcase_09 AC 414 ms
91,264 KB
testcase_10 AC 418 ms
91,136 KB
testcase_11 AC 416 ms
91,264 KB
testcase_12 AC 439 ms
91,264 KB
testcase_13 AC 446 ms
91,136 KB
testcase_14 AC 441 ms
91,136 KB
testcase_15 AC 420 ms
91,264 KB
testcase_16 AC 422 ms
91,416 KB
testcase_17 AC 427 ms
91,396 KB
testcase_18 AC 433 ms
91,392 KB
testcase_19 AC 872 ms
93,660 KB
testcase_20 AC 794 ms
109,348 KB
testcase_21 AC 725 ms
79,916 KB
testcase_22 AC 819 ms
83,840 KB
testcase_23 AC 827 ms
83,584 KB
testcase_24 AC 674 ms
100,224 KB
testcase_25 AC 842 ms
82,328 KB
testcase_26 AC 652 ms
103,684 KB
testcase_27 AC 835 ms
100,480 KB
testcase_28 AC 842 ms
89,472 KB
testcase_29 AC 846 ms
97,536 KB
testcase_30 AC 776 ms
80,716 KB
testcase_31 AC 807 ms
95,360 KB
testcase_32 AC 794 ms
81,436 KB
testcase_33 AC 847 ms
88,064 KB
testcase_34 AC 796 ms
109,096 KB
testcase_35 AC 776 ms
103,424 KB
testcase_36 AC 871 ms
81,920 KB
testcase_37 AC 893 ms
86,784 KB
testcase_38 AC 811 ms
81,792 KB
testcase_39 AC 805 ms
84,480 KB
testcase_40 AC 858 ms
100,736 KB
testcase_41 AC 851 ms
81,928 KB
testcase_42 AC 938 ms
93,312 KB
testcase_43 AC 889 ms
91,648 KB
testcase_44 AC 436 ms
91,340 KB
testcase_45 AC 454 ms
91,776 KB
testcase_46 AC 502 ms
91,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
P = [-1] * (N+1)
Ps = set(range(1,N+1))

def root(x):
    if P[x] < 0: return x
    P[x] = root(P[x])  # 経路圧縮
    return P[x]

def unite(x,y):
    x = root(x)
    y = root(y)
    if x == y: return
    if x > y: x,y = y,x
    P[x] += P[y]
    P[y] = x
    Ps.remove(y)

def same(x,y):
    return root(x) == root(y)

for _ in range(Q):
    qu = list(map(int,input().split()))
    if qu[0] == 1:
        unite(qu[1],qu[2])
    else:
        if len(Ps) == 1:
            print(-1)
        else:
            for p in Ps:
                if not same(p,qu[1]):
                    print(p)
                    break


0