結果

問題 No.2290 UnUnion Find
ユーザー buey_tbuey_t
提出日時 2023-05-08 11:49:30
言語 PyPy3
(7.3.13)
結果
WA  
実行時間 -
コード長 3,077 bytes
コンパイル時間 1,338 ms
コンパイル使用メモリ 85,168 KB
実行使用メモリ 118,524 KB
最終ジャッジ日時 2023-08-16 15:45:12
合計ジャッジ時間 30,841 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
82,396 KB
testcase_01 AC 217 ms
82,672 KB
testcase_02 AC 301 ms
85,492 KB
testcase_03 AC 339 ms
100,116 KB
testcase_04 AC 379 ms
100,040 KB
testcase_05 AC 350 ms
100,236 KB
testcase_06 AC 358 ms
100,076 KB
testcase_07 AC 344 ms
100,060 KB
testcase_08 AC 360 ms
100,084 KB
testcase_09 AC 341 ms
100,084 KB
testcase_10 AC 340 ms
100,276 KB
testcase_11 AC 340 ms
99,852 KB
testcase_12 AC 351 ms
100,076 KB
testcase_13 AC 342 ms
99,856 KB
testcase_14 AC 333 ms
100,008 KB
testcase_15 AC 335 ms
99,684 KB
testcase_16 AC 340 ms
100,116 KB
testcase_17 AC 345 ms
100,012 KB
testcase_18 AC 335 ms
99,864 KB
testcase_19 WA -
testcase_20 AC 566 ms
118,208 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 637 ms
112,876 KB
testcase_27 AC 715 ms
109,280 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 699 ms
104,000 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 633 ms
118,524 KB
testcase_35 AC 635 ms
112,684 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 616 ms
109,820 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 664 ms
100,016 KB
testcase_44 AC 358 ms
100,096 KB
testcase_45 AC 364 ms
100,128 KB
testcase_46 AC 375 ms
100,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
from heapq import heapify, heappop, heappush
from bisect import bisect_left, bisect_right
from copy import deepcopy
import copy
import random
from random import randrange
from collections import deque,Counter,defaultdict
from itertools import permutations,combinations
from decimal import Decimal,ROUND_HALF_UP
#tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
from functools import lru_cache, reduce
#@lru_cache(maxsize=None)
from operator import add,sub,mul,xor,and_,or_,itemgetter
import sys
input = sys.stdin.readline
# .rstrip()
INF = 10**18
mod1 = 10**9+7
mod2 = 998244353

#DecimalならPython
#再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n
        #親だけ
        self.edge = [0]*n
        self.count = 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 self.parents[x] > self.parents[y]:
            x, y = y, x
        
        self.edge[x] += 1
        
        if x == y:
            return
        
        self.count -= 1

        self.parents[x] += self.parents[y]
        self.edge[x] += self.edge[y]
        self.parents[y] = x

    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 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())

uf = UnionFind(N+1)

l = 1
r = N

f = 0
s = 0

st = set()
for i in range(1,N+1):
    st.add(i)

for i in range(Q):
    tmp = list(map(int, input().split()))
    
    if tmp[0] == 1:
        t,u,v = tmp
        
        uf.union(u,v)
        st.discard(u)
        st.discard(v)
        
        if f == 0:
            f = u
        else:
            if not uf.same(f,u) and s == 0:
                s = u
    
    else:
        t,v = tmp
        
        if uf.count == 2:
            print(-1)
        elif uf.same(f,v):
            if s == 0:
                print(next(iter(st)))
            else:
                print(s)
        elif uf.same(s,v):
            print(f)
        else:
            if f == 0:
                for z in st:
                    if z != v:
                        print(z)
                        break
            else:
                print(f)

























0