結果

問題 No.2290 UnUnion Find
ユーザー komkompikomkompi
提出日時 2023-06-11 01:16:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,275 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 112,384 KB
最終ジャッジ日時 2025-01-03 03:33:13
合計ジャッジ時間 42,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 45 ms
52,352 KB
testcase_02 AC 534 ms
76,544 KB
testcase_03 AC 496 ms
97,792 KB
testcase_04 AC 535 ms
97,792 KB
testcase_05 AC 525 ms
97,792 KB
testcase_06 AC 523 ms
97,664 KB
testcase_07 AC 507 ms
97,792 KB
testcase_08 AC 520 ms
97,792 KB
testcase_09 AC 519 ms
97,664 KB
testcase_10 AC 497 ms
97,664 KB
testcase_11 AC 515 ms
97,792 KB
testcase_12 AC 500 ms
97,920 KB
testcase_13 AC 512 ms
97,664 KB
testcase_14 AC 515 ms
97,920 KB
testcase_15 AC 499 ms
97,920 KB
testcase_16 AC 527 ms
97,792 KB
testcase_17 AC 515 ms
97,792 KB
testcase_18 AC 513 ms
97,920 KB
testcase_19 AC 1,275 ms
100,480 KB
testcase_20 AC 904 ms
112,256 KB
testcase_21 AC 820 ms
79,840 KB
testcase_22 AC 1,140 ms
87,820 KB
testcase_23 AC 1,031 ms
86,912 KB
testcase_24 AC 1,075 ms
109,824 KB
testcase_25 AC 997 ms
82,816 KB
testcase_26 AC 794 ms
106,368 KB
testcase_27 AC 982 ms
103,168 KB
testcase_28 AC 1,163 ms
94,976 KB
testcase_29 AC 1,015 ms
106,496 KB
testcase_30 AC 936 ms
81,464 KB
testcase_31 AC 1,082 ms
103,296 KB
testcase_32 AC 935 ms
81,792 KB
testcase_33 AC 1,010 ms
91,904 KB
testcase_34 AC 822 ms
112,384 KB
testcase_35 AC 1,032 ms
106,368 KB
testcase_36 AC 996 ms
86,276 KB
testcase_37 AC 1,190 ms
92,924 KB
testcase_38 AC 1,008 ms
84,736 KB
testcase_39 AC 1,021 ms
87,168 KB
testcase_40 AC 938 ms
103,168 KB
testcase_41 AC 1,030 ms
83,496 KB
testcase_42 AC 1,207 ms
100,224 KB
testcase_43 AC 1,234 ms
99,292 KB
testcase_44 AC 532 ms
97,664 KB
testcase_45 AC 540 ms
97,792 KB
testcase_46 AC 591 ms
95,616 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