結果

問題 No.2290 UnUnion Find
ユーザー komkompikomkompi
提出日時 2023-06-11 01:16:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,016 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,128 KB
最終ジャッジ日時 2024-06-11 00:43:36
合計ジャッジ時間 34,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 451 ms
76,416 KB
testcase_03 AC 398 ms
97,792 KB
testcase_04 AC 394 ms
97,536 KB
testcase_05 AC 410 ms
97,536 KB
testcase_06 AC 404 ms
97,536 KB
testcase_07 AC 413 ms
97,536 KB
testcase_08 AC 430 ms
97,536 KB
testcase_09 AC 474 ms
97,536 KB
testcase_10 AC 411 ms
97,408 KB
testcase_11 AC 397 ms
97,408 KB
testcase_12 AC 423 ms
97,408 KB
testcase_13 AC 475 ms
97,408 KB
testcase_14 AC 425 ms
97,664 KB
testcase_15 AC 390 ms
97,408 KB
testcase_16 AC 410 ms
97,408 KB
testcase_17 AC 388 ms
97,408 KB
testcase_18 AC 402 ms
97,664 KB
testcase_19 AC 988 ms
100,352 KB
testcase_20 AC 657 ms
111,872 KB
testcase_21 AC 665 ms
79,916 KB
testcase_22 AC 950 ms
87,128 KB
testcase_23 AC 786 ms
86,528 KB
testcase_24 AC 926 ms
109,184 KB
testcase_25 AC 768 ms
82,824 KB
testcase_26 AC 627 ms
105,728 KB
testcase_27 AC 738 ms
102,912 KB
testcase_28 AC 912 ms
94,720 KB
testcase_29 AC 856 ms
105,984 KB
testcase_30 AC 680 ms
81,316 KB
testcase_31 AC 816 ms
102,656 KB
testcase_32 AC 703 ms
81,792 KB
testcase_33 AC 748 ms
91,412 KB
testcase_34 AC 730 ms
112,128 KB
testcase_35 AC 849 ms
105,856 KB
testcase_36 AC 763 ms
85,680 KB
testcase_37 AC 944 ms
94,276 KB
testcase_38 AC 832 ms
83,968 KB
testcase_39 AC 826 ms
86,528 KB
testcase_40 AC 787 ms
102,912 KB
testcase_41 AC 779 ms
84,640 KB
testcase_42 AC 969 ms
100,224 KB
testcase_43 AC 1,016 ms
97,664 KB
testcase_44 AC 401 ms
97,792 KB
testcase_45 AC 440 ms
97,664 KB
testcase_46 AC 524 ms
95,488 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)

l,r=0,N-1
for _ in range(Q):
    q=input().split()
    if q[0]=="1":
        u,v=int(q[1])-1,int(q[2])-1
        unite(u,v)
        
        while l!=find(l):
            l+=1
        while r!=find(r):
            r-=1

    else:
        v=int(q[1])-1
        print(-1 if l==r else l+1 if same(v,r) else r+1)
                

0