結果

問題 No.2290 UnUnion Find
ユーザー chineristACchineristAC
提出日時 2023-05-05 21:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 1,525 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 85,024 KB
最終ジャッジ日時 2024-11-23 05:53:24
合計ジャッジ時間 21,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
56,192 KB
testcase_01 AC 49 ms
55,808 KB
testcase_02 AC 176 ms
77,952 KB
testcase_03 AC 230 ms
79,856 KB
testcase_04 AC 234 ms
80,232 KB
testcase_05 AC 233 ms
80,384 KB
testcase_06 AC 235 ms
79,872 KB
testcase_07 AC 242 ms
80,104 KB
testcase_08 AC 240 ms
79,872 KB
testcase_09 AC 235 ms
79,872 KB
testcase_10 AC 235 ms
79,744 KB
testcase_11 AC 233 ms
79,872 KB
testcase_12 AC 240 ms
80,000 KB
testcase_13 AC 237 ms
79,872 KB
testcase_14 AC 232 ms
80,136 KB
testcase_15 AC 238 ms
79,724 KB
testcase_16 AC 241 ms
79,780 KB
testcase_17 AC 239 ms
80,372 KB
testcase_18 AC 245 ms
79,692 KB
testcase_19 AC 515 ms
84,384 KB
testcase_20 AC 407 ms
83,328 KB
testcase_21 AC 342 ms
80,580 KB
testcase_22 AC 486 ms
83,384 KB
testcase_23 AC 395 ms
81,664 KB
testcase_24 AC 366 ms
82,688 KB
testcase_25 AC 452 ms
82,992 KB
testcase_26 AC 371 ms
82,532 KB
testcase_27 AC 409 ms
82,816 KB
testcase_28 AC 461 ms
82,672 KB
testcase_29 AC 474 ms
83,584 KB
testcase_30 AC 407 ms
81,136 KB
testcase_31 AC 439 ms
82,928 KB
testcase_32 AC 480 ms
82,632 KB
testcase_33 AC 396 ms
81,792 KB
testcase_34 AC 361 ms
83,328 KB
testcase_35 AC 440 ms
83,368 KB
testcase_36 AC 375 ms
81,408 KB
testcase_37 AC 484 ms
82,980 KB
testcase_38 AC 435 ms
82,560 KB
testcase_39 AC 392 ms
81,880 KB
testcase_40 AC 425 ms
83,044 KB
testcase_41 AC 460 ms
82,296 KB
testcase_42 AC 574 ms
85,024 KB
testcase_43 AC 515 ms
84,116 KB
testcase_44 AC 239 ms
79,696 KB
testcase_45 AC 237 ms
80,512 KB
testcase_46 AC 243 ms
80,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

class UnionFindVerSize():
    def __init__(self, N):
        self._parent = [n for n in range(0, N)]
        self._size = [1] * N
        self.group = N

    def find_root(self, x):
        if self._parent[x] == x: return x
        self._parent[x] = self.find_root(self._parent[x])
        return self._parent[x]

    def unite(self, x, y):
        gx = self.find_root(x)
        gy = self.find_root(y)
        if gx == gy: return

        self.group -= 1

        if self._size[gx] < self._size[gy]:
            self._parent[gx] = gy
            self._size[gy] += self._size[gx]
        else:
            self._parent[gy] = gx
            self._size[gx] += self._size[gy]

    def get_size(self, x):
        return self._size[self.find_root(x)]

    def is_same_group(self, x, y):
        return self.find_root(x) == self.find_root(y)


N,Q = mi()
a = 1
uf = UnionFindVerSize(N)
for _ in range(Q):
    t,*query = mi()
    if t == 1:
        u,v = query
        u,v = u-1,v-1
        uf.unite(u,v)
        while a!=N and uf.is_same_group(0,a):
            a += 1
    else:
        v = query[0]
        v -= 1
        if not uf.is_same_group(0,v):
            print(1)
        elif a!=N:
            print(a+1)
        else:
            print(-1)
0