結果

問題 No.2290 UnUnion Find
ユーザー OhnoHirokiOhnoHiroki
提出日時 2024-02-27 07:00:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 1,422 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 111,232 KB
最終ジャッジ日時 2024-09-29 11:54:59
合計ジャッジ時間 32,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 495 ms
76,288 KB
testcase_03 AC 420 ms
92,416 KB
testcase_04 AC 454 ms
92,672 KB
testcase_05 AC 472 ms
92,928 KB
testcase_06 AC 454 ms
92,896 KB
testcase_07 AC 463 ms
92,928 KB
testcase_08 AC 466 ms
92,704 KB
testcase_09 AC 458 ms
92,720 KB
testcase_10 AC 478 ms
92,928 KB
testcase_11 AC 468 ms
92,544 KB
testcase_12 AC 454 ms
92,672 KB
testcase_13 AC 478 ms
92,928 KB
testcase_14 AC 458 ms
92,924 KB
testcase_15 AC 442 ms
92,672 KB
testcase_16 AC 453 ms
92,800 KB
testcase_17 AC 454 ms
92,672 KB
testcase_18 AC 455 ms
92,288 KB
testcase_19 AC 703 ms
94,208 KB
testcase_20 AC 636 ms
110,720 KB
testcase_21 AC 658 ms
79,388 KB
testcase_22 AC 715 ms
85,120 KB
testcase_23 AC 722 ms
84,480 KB
testcase_24 AC 731 ms
101,888 KB
testcase_25 AC 710 ms
82,176 KB
testcase_26 AC 705 ms
106,624 KB
testcase_27 AC 739 ms
102,272 KB
testcase_28 AC 687 ms
90,240 KB
testcase_29 AC 707 ms
98,816 KB
testcase_30 AC 659 ms
80,092 KB
testcase_31 AC 700 ms
96,384 KB
testcase_32 AC 745 ms
82,772 KB
testcase_33 AC 728 ms
89,344 KB
testcase_34 AC 660 ms
111,232 KB
testcase_35 AC 710 ms
104,704 KB
testcase_36 AC 729 ms
83,072 KB
testcase_37 AC 713 ms
87,808 KB
testcase_38 AC 727 ms
82,560 KB
testcase_39 AC 701 ms
85,248 KB
testcase_40 AC 740 ms
102,016 KB
testcase_41 AC 734 ms
80,768 KB
testcase_42 AC 733 ms
94,080 KB
testcase_43 AC 720 ms
91,904 KB
testcase_44 AC 469 ms
92,288 KB
testcase_45 AC 456 ms
92,416 KB
testcase_46 AC 452 ms
92,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
UnionFind
"""
class UnionFind():
    def __init__(self, N):
        self.N = N
        self.parents = [-1] * N
    
    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]
    
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        
        if x == y:
            return
        
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        
        self.parents[x] += self.parents[y]
        self.parents[y] = x
    
    def size(self, x):
        return -self.parents[self.find(x)]
    
    def same(self, x, y):
        return self.find(x) == self.find(y)


N,Q = map(int, input().split())
vertex = set([i for i in range(N)])
UF = UnionFind(N)
for q in range(Q):
    INPUT = list(map(int, input().split()))
    if INPUT[0] == 1:
        v1 = UF.find(INPUT[1]-1)
        v2 = UF.find(INPUT[2]-1)
        UF.union(INPUT[1]-1, INPUT[2]-1)
        if UF.find(INPUT[1]-1) == v1:
            vertex.discard(v2)
        else:
            vertex.discard(v1)
    else:
        if len(vertex) == 1:
            print(-1)
        else:
            v1,v2 = vertex.pop(), vertex.pop()
            if v1 == UF.find(INPUT[1]-1):
                print(v2+1)
            else:
                print(v1+1)
            vertex.add(v1)
            vertex.add(v2)
0