結果

問題 No.2290 UnUnion Find
ユーザー ニックネームニックネーム
提出日時 2023-05-05 22:06:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 834 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 109,184 KB
最終ジャッジ日時 2024-11-23 07:52:52
合計ジャッジ時間 32,528 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 492 ms
76,288 KB
testcase_03 AC 396 ms
91,008 KB
testcase_04 AC 407 ms
91,340 KB
testcase_05 AC 417 ms
91,336 KB
testcase_06 AC 405 ms
91,008 KB
testcase_07 AC 452 ms
91,136 KB
testcase_08 AC 430 ms
91,392 KB
testcase_09 AC 442 ms
91,268 KB
testcase_10 AC 403 ms
91,136 KB
testcase_11 AC 429 ms
91,452 KB
testcase_12 AC 408 ms
91,408 KB
testcase_13 AC 413 ms
91,388 KB
testcase_14 AC 417 ms
91,456 KB
testcase_15 AC 438 ms
91,324 KB
testcase_16 AC 412 ms
91,264 KB
testcase_17 AC 417 ms
91,320 KB
testcase_18 AC 426 ms
91,136 KB
testcase_19 AC 834 ms
93,312 KB
testcase_20 AC 693 ms
109,088 KB
testcase_21 AC 664 ms
79,316 KB
testcase_22 AC 715 ms
84,036 KB
testcase_23 AC 752 ms
83,624 KB
testcase_24 AC 631 ms
99,968 KB
testcase_25 AC 702 ms
81,280 KB
testcase_26 AC 638 ms
103,424 KB
testcase_27 AC 722 ms
100,480 KB
testcase_28 AC 776 ms
89,344 KB
testcase_29 AC 765 ms
97,844 KB
testcase_30 AC 714 ms
80,120 KB
testcase_31 AC 729 ms
95,360 KB
testcase_32 AC 740 ms
81,468 KB
testcase_33 AC 780 ms
88,448 KB
testcase_34 AC 685 ms
109,184 KB
testcase_35 AC 779 ms
103,296 KB
testcase_36 AC 775 ms
81,920 KB
testcase_37 AC 815 ms
86,972 KB
testcase_38 AC 751 ms
82,048 KB
testcase_39 AC 748 ms
84,736 KB
testcase_40 AC 768 ms
100,564 KB
testcase_41 AC 778 ms
80,724 KB
testcase_42 AC 781 ms
92,800 KB
testcase_43 AC 820 ms
91,388 KB
testcase_44 AC 418 ms
91,404 KB
testcase_45 AC 447 ms
91,264 KB
testcase_46 AC 488 ms
91,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UF:
    def __init__(self,n):
        self.p = [-1]*n; self.i = set(range(n))
    def f(self,x):
        if self.p[x]<0: return x
        else: self.p[x] = self.f(self.p[x]); return self.p[x]
    def u(self,x,y):
        x = self.f(x); y = self.f(y)
        if x==y: return
        if -self.p[x]<-self.p[y]: x,y = y,x
        self.p[x] += self.p[y]; self.i.remove(y); self.p[y] = x
    def s(self,x,y): return self.f(x) == self.f(y)
n,q = map(int,input().split())
uf = UF(n)
for _ in range(q):
    p = list(map(int,input().split()))
    if p[0]==1: uf.u(p[1]-1,p[2]-1)
    if p[0]==2:
        if len(uf.i)==1: print(-1); continue
        i = uf.f(p[1]-1)
        for j in uf.i:
            if i!=j: print(j+1); break
0