結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 457 ms
76,416 KB
testcase_03 AC 382 ms
92,928 KB
testcase_04 AC 382 ms
92,800 KB
testcase_05 AC 388 ms
93,056 KB
testcase_06 AC 377 ms
92,800 KB
testcase_07 AC 376 ms
92,800 KB
testcase_08 AC 378 ms
92,928 KB
testcase_09 AC 382 ms
93,056 KB
testcase_10 AC 385 ms
93,056 KB
testcase_11 AC 381 ms
92,928 KB
testcase_12 AC 375 ms
92,928 KB
testcase_13 AC 430 ms
92,928 KB
testcase_14 AC 426 ms
92,928 KB
testcase_15 AC 372 ms
92,928 KB
testcase_16 AC 398 ms
92,672 KB
testcase_17 AC 409 ms
92,672 KB
testcase_18 AC 398 ms
92,928 KB
testcase_19 WA -
testcase_20 AC 634 ms
112,128 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 705 ms
102,400 KB
testcase_25 WA -
testcase_26 AC 687 ms
106,240 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 707 ms
99,840 KB
testcase_30 WA -
testcase_31 AC 672 ms
97,408 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 728 ms
111,872 KB
testcase_35 AC 794 ms
105,856 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 765 ms
103,296 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 395 ms
92,928 KB
testcase_45 AC 357 ms
93,056 KB
testcase_46 AC 391 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)])

def recog(n):
    if n in is_par:
        if find(n)!=n:
            is_par.remove(n)
    else:
        if find(n)==n:
            is_par.add(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)
        
        recog(u)
        recog(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