結果

問題 No.2290 UnUnion Find
ユーザー sepa38sepa38
提出日時 2023-05-05 21:29:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,020 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 112,128 KB
最終ジャッジ日時 2024-11-23 06:09:05
合計ジャッジ時間 40,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 518 ms
76,800 KB
testcase_03 AC 490 ms
93,056 KB
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 957 ms
112,000 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 861 ms
102,656 KB
testcase_25 WA -
testcase_26 AC 839 ms
106,368 KB
testcase_27 AC 1,025 ms
102,784 KB
testcase_28 WA -
testcase_29 AC 1,098 ms
99,840 KB
testcase_30 WA -
testcase_31 AC 1,015 ms
97,280 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 980 ms
112,128 KB
testcase_35 AC 992 ms
106,112 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 1,097 ms
103,296 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(500000)
class UF:
  def __init__(self, n):
    self.root = [i for i in range(n)]
    self.subt = [1] * n

  def find(self, x):
    if self.root[x] == x:
      return x
    else:
      self.root[x] = self.find(self.root[x])
      return self.root[x]

  def union(self, x, y):
    x, y = self.find(x), self.find(y)
    x, y = min(x, y), max(x, y)
    if x != y:
      self.subt[x] += self.subt[y]
    self.root[y] = x

  def size(self, x):
    return self.subt[self.find(x)]


n, q = map(int, input().split())
uf = UF(n)
s = set([i for i in range(n)])
for _ in range(q):
  query = list(map(lambda x: int(x)-1, input().split()))
  if query[0]:
    v = query[1]
    if uf.size(v) == n:
      print(-1)
      continue
    v = uf.find(v)
    for cnd in s:
      if cnd != v:
        print(cnd + 1)
        break
  else:
    u, v = query[1:]
    u, v = sorted([u, v])
    uf.union(u, v)
    if uf.find(v) != v and v in s:
      s.discard(v)
    if uf.find(u) != u and u in s:
      s.discard(u)
0