結果

問題 No.2290 UnUnion Find
ユーザー とりゐとりゐ
提出日時 2023-05-05 21:27:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,943 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,276 KB
最終ジャッジ日時 2024-05-02 15:16:57
合計ジャッジ時間 21,780 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,016 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 595 ms
116,224 KB
testcase_20 AC 577 ms
124,672 KB
testcase_21 RE -
testcase_22 AC 503 ms
106,928 KB
testcase_23 AC 489 ms
106,292 KB
testcase_24 AC 571 ms
123,264 KB
testcase_25 AC 482 ms
105,260 KB
testcase_26 AC 552 ms
125,696 KB
testcase_27 AC 624 ms
125,120 KB
testcase_28 AC 560 ms
109,648 KB
testcase_29 AC 630 ms
120,196 KB
testcase_30 RE -
testcase_31 AC 600 ms
117,360 KB
testcase_32 AC 477 ms
105,504 KB
testcase_33 AC 533 ms
109,576 KB
testcase_34 AC 556 ms
129,276 KB
testcase_35 AC 623 ms
126,976 KB
testcase_36 AC 473 ms
105,924 KB
testcase_37 AC 553 ms
109,184 KB
testcase_38 AC 512 ms
106,808 KB
testcase_39 AC 499 ms
107,396 KB
testcase_40 AC 610 ms
125,672 KB
testcase_41 RE -
testcase_42 AC 590 ms
113,140 KB
testcase_43 AC 610 ms
113,300 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

from collections import defaultdict

class UnionFind():
  def __init__(self,n):
    self.n=n
    self.parents=[-1]*n
    self.grp_cnt=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.grp_cnt-=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 len(self.roots())

  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

n,q=map(int,input().split())
if n==1:
  for i in range(q):
    Q=list(map(int,input().split()))
    if Q[0]==2:
      print(-1)
  exit()
  
query=[]
u0,v0=-1,-1
uf=UnionFind(n)
for _ in range(q):
  Q=list(map(int,input().split()))
  if Q[0]==1:
    u,v=Q[1:]
    u-=1
    v-=1
    uf.union(u,v)
    if u0==-1 and uf.grp_cnt==2:
      g=uf.all_group_members()
      for i in g:
        if u0==-1:
          u0=g[i][0]
        else:
          v0=g[i][1]
    query.append((1,u,v))
  else:
    query.append((2,Q[1]-1,-1))

if u0==-1:
  g=uf.all_group_members()
  for i in g:
    if u0==-1:
      u0=g[i][0]
    elif v0==-1:
      v0=g[i][0]
      
uf=UnionFind(n)
for t,u,v in query:
  if t==1:
    uf.union(u,v)
  else:
    if not uf.same(u,u0):
      print(u0+1)
    elif not uf.same(u,v0):
      print(v0+1)
    else:
      print(-1)
0