結果

問題 No.2290 UnUnion Find
ユーザー H20H20
提出日時 2023-05-07 01:02:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 2,001 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-11-24 04:47:37
合計ジャッジ時間 18,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,144 KB
testcase_01 AC 38 ms
54,144 KB
testcase_02 AC 207 ms
97,408 KB
testcase_03 AC 232 ms
98,304 KB
testcase_04 AC 242 ms
104,628 KB
testcase_05 AC 244 ms
104,336 KB
testcase_06 AC 238 ms
104,384 KB
testcase_07 AC 234 ms
104,320 KB
testcase_08 AC 243 ms
104,364 KB
testcase_09 AC 232 ms
104,704 KB
testcase_10 AC 248 ms
104,676 KB
testcase_11 AC 248 ms
104,192 KB
testcase_12 AC 237 ms
104,268 KB
testcase_13 AC 236 ms
104,332 KB
testcase_14 AC 229 ms
104,320 KB
testcase_15 AC 236 ms
104,192 KB
testcase_16 AC 253 ms
104,192 KB
testcase_17 AC 241 ms
104,192 KB
testcase_18 AC 235 ms
104,308 KB
testcase_19 AC 345 ms
103,856 KB
testcase_20 AC 323 ms
106,112 KB
testcase_21 AC 278 ms
100,992 KB
testcase_22 AC 330 ms
107,884 KB
testcase_23 AC 327 ms
108,772 KB
testcase_24 AC 344 ms
104,064 KB
testcase_25 AC 321 ms
109,388 KB
testcase_26 AC 338 ms
105,216 KB
testcase_27 AC 372 ms
104,484 KB
testcase_28 AC 333 ms
106,248 KB
testcase_29 AC 365 ms
103,664 KB
testcase_30 AC 304 ms
103,296 KB
testcase_31 AC 353 ms
103,492 KB
testcase_32 AC 325 ms
109,184 KB
testcase_33 AC 342 ms
106,052 KB
testcase_34 AC 316 ms
106,240 KB
testcase_35 AC 362 ms
105,216 KB
testcase_36 AC 316 ms
109,440 KB
testcase_37 AC 335 ms
107,460 KB
testcase_38 AC 317 ms
109,312 KB
testcase_39 AC 317 ms
108,224 KB
testcase_40 AC 370 ms
105,140 KB
testcase_41 AC 300 ms
110,336 KB
testcase_42 AC 352 ms
104,344 KB
testcase_43 AC 337 ms
105,200 KB
testcase_44 AC 251 ms
104,064 KB
testcase_45 AC 248 ms
104,192 KB
testcase_46 AC 239 ms
104,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.root = 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
        self.root-=1

    def size(self, x):
        return -self.parents[self.find(x)]

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

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return self.root

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())


N,q = map(int, input().split())
Q = [list(map(int, input().split())) for _ in range(q)]
uf = UnionFind(N)
STACK = []
m1_cnt = 0
is_all_union = N==1
for q in Q:
    if len(q)==3:
        _,u,v = q
        if not is_all_union:
            if uf.group_count()==2 and not uf.same(u-1,v-1):
                is_all_union=True
            else:
                uf.union(u-1,v-1)
    else:
        _,v = q
        if is_all_union:
            m1_cnt+=1
        else:
            STACK.append(v-1)
for i in range(N):
    if not uf.same(0,i):
        nd = i+1
for s in STACK:
    if uf.same(0,s):
        print(nd)
    else:
        print(1)
for _ in range(m1_cnt):
    print(-1)


0