結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,016 KB
testcase_01 WA -
testcase_02 AC 537 ms
77,440 KB
testcase_03 AC 456 ms
92,416 KB
testcase_04 AC 473 ms
92,032 KB
testcase_05 AC 477 ms
92,032 KB
testcase_06 AC 468 ms
92,032 KB
testcase_07 AC 503 ms
92,032 KB
testcase_08 AC 516 ms
91,904 KB
testcase_09 AC 503 ms
92,032 KB
testcase_10 AC 478 ms
92,032 KB
testcase_11 AC 503 ms
92,416 KB
testcase_12 AC 473 ms
91,904 KB
testcase_13 AC 473 ms
92,288 KB
testcase_14 AC 502 ms
92,032 KB
testcase_15 AC 504 ms
92,288 KB
testcase_16 AC 492 ms
92,416 KB
testcase_17 AC 475 ms
92,032 KB
testcase_18 AC 504 ms
92,032 KB
testcase_19 AC 1,007 ms
94,080 KB
testcase_20 WA -
testcase_21 AC 741 ms
79,736 KB
testcase_22 WA -
testcase_23 AC 913 ms
84,652 KB
testcase_24 WA -
testcase_25 AC 856 ms
82,420 KB
testcase_26 AC 973 ms
104,192 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 971 ms
98,816 KB
testcase_30 AC 784 ms
80,808 KB
testcase_31 WA -
testcase_32 AC 879 ms
82,460 KB
testcase_33 AC 945 ms
88,704 KB
testcase_34 AC 901 ms
109,568 KB
testcase_35 AC 960 ms
104,192 KB
testcase_36 AC 884 ms
82,780 KB
testcase_37 WA -
testcase_38 AC 896 ms
83,248 KB
testcase_39 AC 892 ms
85,760 KB
testcase_40 AC 985 ms
101,120 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 482 ms
92,032 KB
testcase_45 AC 491 ms
91,904 KB
testcase_46 AC 503 ms
92,160 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)]
    
from collections import deque

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=deque()
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:
                while len(lis)>1:
                    if fx == lis[-1]:
                        lis.appendleft(lis.pop())
                    else:
                        if fx == uf.find(lis[-1]):
                            lis.pop()
                        else:
                            print(lis[-1])
                            break
                            
                            
                    
            
            


0