結果

問題 No.2290 UnUnion Find
ユーザー neuphyneuphy
提出日時 2023-05-06 20:46:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,353 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 89,756 KB
最終ジャッジ日時 2024-05-03 04:50:01
合計ジャッジ時間 30,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,504 KB
testcase_01 AC 37 ms
54,272 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 450 ms
82,856 KB
testcase_05 AC 406 ms
83,328 KB
testcase_06 AC 431 ms
82,816 KB
testcase_07 AC 393 ms
82,944 KB
testcase_08 AC 407 ms
82,688 KB
testcase_09 AC 404 ms
82,560 KB
testcase_10 AC 399 ms
82,864 KB
testcase_11 AC 395 ms
82,688 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 400 ms
83,132 KB
testcase_15 AC 400 ms
82,688 KB
testcase_16 AC 393 ms
82,688 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 757 ms
86,044 KB
testcase_20 AC 695 ms
89,756 KB
testcase_21 WA -
testcase_22 AC 752 ms
82,968 KB
testcase_23 AC 685 ms
83,472 KB
testcase_24 AC 681 ms
87,852 KB
testcase_25 AC 719 ms
82,700 KB
testcase_26 AC 673 ms
89,068 KB
testcase_27 AC 816 ms
88,436 KB
testcase_28 AC 673 ms
85,136 KB
testcase_29 AC 681 ms
88,056 KB
testcase_30 WA -
testcase_31 AC 676 ms
87,556 KB
testcase_32 AC 792 ms
81,512 KB
testcase_33 AC 684 ms
84,492 KB
testcase_34 AC 642 ms
89,184 KB
testcase_35 AC 818 ms
89,252 KB
testcase_36 AC 814 ms
83,156 KB
testcase_37 AC 659 ms
84,448 KB
testcase_38 AC 646 ms
82,148 KB
testcase_39 AC 654 ms
83,484 KB
testcase_40 AC 680 ms
88,064 KB
testcase_41 WA -
testcase_42 AC 687 ms
86,468 KB
testcase_43 AC 686 ms
85,680 KB
testcase_44 AC 419 ms
83,512 KB
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

class Union_Find():
    def __init__(self, N):
        self.size = [1] * N
        self.parent = [0] * N
        for i in range(N):
            self.parent[i] = i

    def find(self, x):
        if self.parent[x] == x:
            return x
        self.parent[x] = self.find(self.parent[x])
        return self.parent[x]

    def is_same(self, x, y):
        return self.find(x) == self.find(y)

    def unit(self, x, y):
        x, y = self.find(x), self.find(y)
        if x == y: return x
        if self.size[x] < self.size[y]: x, y = y, x
        self.size[x] += self.size[y]
        self.parent[y] = x
        return x


N, Q = map(int, input().split())

UF = Union_Find(N)

dq = deque()
for i in range(N):
    dq.append(i)

used = [False] * N

for i in range(Q):
    
    q = list(map(int, input().split()))
    
    if q[0] == 1:
        
        q[1] -= 1
        q[2] -= 1
        used[UF.find(q[1])] = True
        used[UF.find(q[2])] = True
        
        used[UF.unit(q[1], q[2])] = False

        while used[dq[0]]:
            dq.popleft()

        dq.rotate()

        while used[dq[0]]:
            dq.popleft()
    
    else:

        q[1] -= 1

        if len(dq) == 1:
            print(-1)
        elif UF.is_same(dq[0], q[1]):
            print(dq[1] + 1)
        else:
            print(dq[0] + 1)
0