結果

問題 No.2290 UnUnion Find
ユーザー prin_kemkemprin_kemkem
提出日時 2023-05-06 10:25:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 3,073 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 86,356 KB
最終ジャッジ日時 2024-11-23 19:44:36
合計ジャッジ時間 20,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
79,744 KB
testcase_01 AC 99 ms
79,488 KB
testcase_02 AC 189 ms
81,024 KB
testcase_03 AC 234 ms
82,688 KB
testcase_04 AC 237 ms
82,560 KB
testcase_05 AC 243 ms
82,176 KB
testcase_06 AC 238 ms
82,432 KB
testcase_07 AC 256 ms
82,816 KB
testcase_08 AC 262 ms
82,944 KB
testcase_09 AC 262 ms
82,432 KB
testcase_10 AC 245 ms
82,560 KB
testcase_11 AC 251 ms
83,456 KB
testcase_12 AC 242 ms
82,944 KB
testcase_13 AC 234 ms
82,176 KB
testcase_14 AC 258 ms
82,816 KB
testcase_15 AC 253 ms
83,200 KB
testcase_16 AC 242 ms
82,816 KB
testcase_17 AC 254 ms
82,688 KB
testcase_18 AC 261 ms
82,432 KB
testcase_19 AC 468 ms
85,784 KB
testcase_20 AC 431 ms
85,760 KB
testcase_21 AC 329 ms
83,048 KB
testcase_22 AC 420 ms
85,796 KB
testcase_23 AC 393 ms
84,864 KB
testcase_24 AC 403 ms
84,224 KB
testcase_25 AC 350 ms
84,548 KB
testcase_26 AC 340 ms
84,352 KB
testcase_27 AC 389 ms
85,120 KB
testcase_28 AC 444 ms
86,356 KB
testcase_29 AC 414 ms
85,376 KB
testcase_30 AC 364 ms
84,260 KB
testcase_31 AC 412 ms
85,376 KB
testcase_32 AC 368 ms
84,736 KB
testcase_33 AC 388 ms
84,224 KB
testcase_34 AC 354 ms
85,632 KB
testcase_35 AC 417 ms
85,584 KB
testcase_36 AC 394 ms
83,988 KB
testcase_37 AC 433 ms
85,504 KB
testcase_38 AC 387 ms
84,736 KB
testcase_39 AC 394 ms
84,352 KB
testcase_40 AC 409 ms
85,520 KB
testcase_41 AC 384 ms
84,368 KB
testcase_42 AC 449 ms
85,760 KB
testcase_43 AC 459 ms
86,144 KB
testcase_44 AC 240 ms
82,816 KB
testcase_45 AC 239 ms
83,200 KB
testcase_46 AC 258 ms
83,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
import copy
from itertools import combinations, permutations, product, accumulate, groupby
from heapq import heapify, heappop, heappush
import math
import bisect
from pprint import pprint
import sys
# sys.setrecursionlimit(700000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################

class UnionFind:
    #コンストラクタ
    def __init__(self, n):
        self.n = n
        self.parents = [-1]*n
        self.max_root = n-1
        self.min_root = 0

    #点xの根を調べる+親が根になるよう移動
    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    #点x,yの属する集合同士を連結(要素数が少ない方を多い方に連結)
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x
        if y == self.min_root:
            for i in range(y+1, x+1):
                if self.parents[i] < 0:
                    self.min_root = i
                    break
        elif y == self.max_root:
            for i in range(y-1, x-1, -1):
                if self.parents[i] < 0:
                    self.max_root = i
                    break
        return True

    #点xが属する集合の要素数を取得
    def size(self, x):
        return -self.parents[self.find(x)]

    #点x,yが同じ集合に属しているか判定
    def same(self, x, y):
        return self.find(x) == self.find(y)

    #点xの属する集合の全要素を取得
    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 len(self.roots())

    #全集合の「根と全要素」を取得
    def get_groups(self):
        groups = defaultdict(list)
        for x in range(self.n):
            groups[self.find(x)].append(x)
        return groups

    #print(インスタンス)で、全集合の「根と全要素」を出力
    def __str__(self):
        return '\n'.join('{}:{}'.format(r, self.menbers(r)) for r in self.roots())
    
N, Q = map(int, input().split())
uf = UnionFind(N)
ans = []
for _ in range(Q):
    q = tuple(map(int, input().split()))
    if q[0] == 1:
        _, u, v = q
        u -= 1; v -= 1
        uf.union(u, v)
    else:
        _, u = q
        u -= 1
        r = uf.find(u)
        if r != uf.min_root:
            print(uf.min_root+1)
        elif r != uf.max_root:
            print(uf.max_root+1)
        else:
            print(-1)
0