結果

問題 No.2290 UnUnion Find
ユーザー komkompikomkompi
提出日時 2023-06-11 01:04:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 945 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,940 KB
実行使用メモリ 112,256 KB
最終ジャッジ日時 2024-06-11 00:42:19
合計ジャッジ時間 29,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 450 ms
76,544 KB
testcase_03 AC 394 ms
92,928 KB
testcase_04 AC 393 ms
93,056 KB
testcase_05 AC 417 ms
92,928 KB
testcase_06 AC 376 ms
93,056 KB
testcase_07 AC 412 ms
92,800 KB
testcase_08 AC 396 ms
93,056 KB
testcase_09 AC 413 ms
92,928 KB
testcase_10 AC 400 ms
92,928 KB
testcase_11 AC 413 ms
92,544 KB
testcase_12 AC 375 ms
92,928 KB
testcase_13 AC 384 ms
92,928 KB
testcase_14 AC 364 ms
92,928 KB
testcase_15 AC 375 ms
92,672 KB
testcase_16 AC 374 ms
92,800 KB
testcase_17 AC 384 ms
92,672 KB
testcase_18 AC 403 ms
92,800 KB
testcase_19 WA -
testcase_20 AC 601 ms
112,256 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 695 ms
102,656 KB
testcase_25 WA -
testcase_26 AC 713 ms
105,856 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 683 ms
99,968 KB
testcase_30 WA -
testcase_31 AC 730 ms
97,152 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 657 ms
112,128 KB
testcase_35 AC 654 ms
105,984 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 667 ms
103,040 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 379 ms
92,800 KB
testcase_45 AC 404 ms
92,928 KB
testcase_46 AC 395 ms
92,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

N,Q=map(int,input().split())

par = [i for i in range(N+1)]
rank = [0]*(N+1)
def find(x):
    if par[x] == x:
        return x
    else:
        par[x] = find(par[x]) #経路圧縮
        return par[x]
def same(x,y):
    return find(x) == find(y)
def unite(x,y):
    x = find(x)
    y = find(y)
    if x == y:
        return 0
    if rank[x] < rank[y]:
        par[x] = y
    else:
        par[y] = x
        if rank[x]==rank[y]:rank[x]+=1


is_par=set([i for i in range(N)])

for _ in range(Q):
    q=input().split()
    if q[0]=="1":
        u,v=int(q[1])-1,int(q[2])-1
        unite(u,v)
        if find(u)!=u and u in is_par:
            is_par.remove(u)
        if find(v)!=v and v in is_par:
            is_par.remove(v)
    else:
        v=int(q[1])-1
        ans=-1
        for u in is_par:
            if u!=find(v):
                ans=u+1
                break
        print(ans)
                

0