結果

問題 No.2290 UnUnion Find
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-05 22:07:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,494 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-05-02 16:30:42
合計ジャッジ時間 39,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 WA -
testcase_02 AC 532 ms
76,928 KB
testcase_03 AC 456 ms
91,520 KB
testcase_04 AC 453 ms
91,392 KB
testcase_05 AC 474 ms
91,520 KB
testcase_06 AC 462 ms
91,392 KB
testcase_07 AC 492 ms
91,520 KB
testcase_08 AC 498 ms
91,392 KB
testcase_09 AC 488 ms
91,392 KB
testcase_10 AC 473 ms
91,392 KB
testcase_11 AC 490 ms
91,520 KB
testcase_12 AC 463 ms
91,392 KB
testcase_13 AC 470 ms
91,520 KB
testcase_14 AC 492 ms
91,776 KB
testcase_15 AC 507 ms
91,520 KB
testcase_16 AC 484 ms
91,264 KB
testcase_17 AC 498 ms
91,392 KB
testcase_18 AC 492 ms
91,520 KB
testcase_19 AC 933 ms
93,312 KB
testcase_20 WA -
testcase_21 AC 725 ms
79,492 KB
testcase_22 WA -
testcase_23 AC 882 ms
83,712 KB
testcase_24 WA -
testcase_25 AC 826 ms
82,224 KB
testcase_26 AC 930 ms
103,680 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 955 ms
97,920 KB
testcase_30 AC 746 ms
80,684 KB
testcase_31 WA -
testcase_32 AC 840 ms
82,912 KB
testcase_33 AC 909 ms
88,320 KB
testcase_34 AC 888 ms
109,056 KB
testcase_35 AC 930 ms
103,808 KB
testcase_36 AC 838 ms
81,920 KB
testcase_37 WA -
testcase_38 AC 854 ms
81,792 KB
testcase_39 AC 889 ms
84,480 KB
testcase_40 AC 946 ms
100,864 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 465 ms
91,648 KB
testcase_45 AC 483 ms
92,288 KB
testcase_46 AC 490 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)]
    

n,q= map(int,input().split())
nots = set()
uf = UnionFind(n+1)
for i in range(1,n+1):
    nots.add(i)
s=set()
lis=[]
for i in range(q):
    t = list(map(int,input().split()))
    if t[0] == 1:
        x,y=t[1],t[2]
        if x > y:
            x,y = y,x
        nots.discard(x)
        nots.discard(y)
        uf.union(x,y)
        fx=uf.find(x)
        if fx not in s:
            s.add(x)
            lis.append(x)
    else:
        x=t[1]
        fx=uf.find(x)
        if fx not in s:
            print(x%(n+1) + 1)
        else:
            if uf.size(fx) == n:
                print(-1)
            elif len(nots) > 0:
                for i in nots:
                    print(i)
                    break
            else:
                if lis[0] != fx:
                    print(lis[0])
                else:
                    print(lis[-1])
            
            


0