結果

問題 No.2290 UnUnion Find
ユーザー miho-4miho-4
提出日時 2023-05-05 21:44:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 110,720 KB
最終ジャッジ日時 2024-05-02 15:44:16
合計ジャッジ時間 29,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 724 ms
110,720 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 611 ms
101,376 KB
testcase_25 WA -
testcase_26 AC 671 ms
104,448 KB
testcase_27 AC 744 ms
102,016 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 694 ms
96,512 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 689 ms
110,464 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 777 ms
101,888 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)

n,q=map(int,input().split())
S={i for i in range(1,n+1)}
par=[i for i in range(n+1)]
rank=[0]*(n+1)

def find(x):
  if par[x]==x:
    return x
  else:
    par[x]=find(par[x])
    return par[x]

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

def unit(x,y):
  global S
  x=find(x)
  y=find(y)
  if x==y:
    return 0
  if rank[x]<rank[y]:
    par[x]=y
    S-={x}
  else:
    par[y]=x
    if rank[x]==rank[y]:
      rank[x]+=1
      S-={y}
for _ in range(q):
  Q=list(map(int,input().split()))

  if Q[0]==1:
    u,v=Q[1],Q[2]
    unit(u,v)
  else:
    v=Q[1]
    x=find(v)
    if 1<len(S):
      for e in S:
        if e!=x:
          print(e)
          break
    else:
      print(-1)
0