結果

問題 No.2290 UnUnion Find
ユーザー rlangevinrlangevin
提出日時 2023-05-05 21:48:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,037 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 114,968 KB
最終ジャッジ日時 2024-05-02 15:53:47
合計ジャッジ時間 22,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 220 ms
110,904 KB
testcase_03 AC 263 ms
108,800 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 465 ms
114,968 KB
testcase_21 AC 355 ms
108,544 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 491 ms
114,484 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 486 ms
112,368 KB
testcase_30 AC 374 ms
112,424 KB
testcase_31 AC 518 ms
111,724 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 477 ms
114,724 KB
testcase_35 AC 498 ms
114,392 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 553 ms
113,572 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 287 ms
108,376 KB
testcase_46 AC 300 ms
108,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

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

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]


N, Q = map(int, input().split())
query = [None] * Q
U = UnionFind(N)
for i in range(Q):
    query[i] = list(map(int, input().split()))
    if query[i][0] == 1:
        u, v = query[i][1:]
        u, v = u - 1, v - 1
        U.union(u, v)
    else:
        if U.get_size(0) == N:
            query[i].append(-1)
        else:
            query[i].append(1)
            
p, q = 0, -1
flag = 1
U = UnionFind(N)  
for i in range(Q):
    if query[i][0] == 2:
        if query[i][-1] == -1:
            flag = 0
    else:
        if flag:
            u, v = query[i][1:]
            u, v = u - 1, v - 1
            p = u
            q = v
            
for i in range(Q):
    if query[i][0] == 2:
        continue
    else:
        u, v = query[i][1:]
        u, v = u - 1, v - 1
        if u == p and v == q:
            break
        else:
            U.union(u, v)
            
ans = []  
for i in range(Q - 1, -1, -1):
    if query[i][0] == 2:
        if query[i][-1] != -1:
            u = query[i][1] - 1
            if U.is_same(u, p):
                ans.append(q + 1)
            else:
                ans.append(p + 1)
        else:
            ans.append(-1)

ans.reverse()
for a in ans:
    print(a)
0