結果

問題 No.1390 Get together
ユーザー marroncastlemarroncastle
提出日時 2021-02-13 01:55:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 1,368 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 118,436 KB
最終ジャッジ日時 2024-07-20 03:19:29
合計ジャッジ時間 9,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
52,480 KB
testcase_01 AC 49 ms
52,480 KB
testcase_02 AC 50 ms
52,352 KB
testcase_03 AC 119 ms
77,312 KB
testcase_04 AC 96 ms
77,440 KB
testcase_05 AC 95 ms
77,312 KB
testcase_06 AC 89 ms
77,056 KB
testcase_07 AC 88 ms
77,184 KB
testcase_08 AC 92 ms
77,540 KB
testcase_09 AC 97 ms
77,696 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 37 ms
52,736 KB
testcase_12 AC 38 ms
52,736 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 37 ms
52,608 KB
testcase_15 AC 36 ms
51,840 KB
testcase_16 AC 220 ms
98,684 KB
testcase_17 AC 332 ms
116,480 KB
testcase_18 AC 228 ms
108,876 KB
testcase_19 AC 457 ms
117,648 KB
testcase_20 AC 440 ms
118,028 KB
testcase_21 AC 463 ms
117,584 KB
testcase_22 AC 367 ms
115,512 KB
testcase_23 AC 372 ms
113,832 KB
testcase_24 AC 362 ms
115,172 KB
testcase_25 AC 461 ms
118,348 KB
testcase_26 AC 422 ms
117,760 KB
testcase_27 AC 464 ms
117,508 KB
testcase_28 AC 445 ms
117,880 KB
testcase_29 AC 450 ms
118,436 KB
testcase_30 AC 439 ms
118,092 KB
testcase_31 AC 465 ms
117,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

  def roots(self):
    return [i for i, x in enumerate(self.parents) if x < 0]

  def members(self, x):
    root = self.find(x)
    return [i for i in range(self.n) if self.find(i) == root]

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

  def groups(self):
    roots = self.roots()
    r_to_g = {}
    for i, r in enumerate(roots):
      r_to_g[r] = i
    groups = [[] for _ in roots]
    for i in range(self.n):
      groups[r_to_g[self.find(i)]].append(i)
    return groups

N, M = map(int, input().split())
setlis = [set() for _ in range(N)]
for i in range(N):
  b,c = map(int, input().split())
  setlis[c-1].add(b-1)
uf = UnionFind(M)
ans = 0
for i in range(N):
  lis = list(setlis[i])
  if not len(lis): continue
  a = lis[0]
  for l in lis[1:]:
    if not uf.same(a,l):
      ans += 1
      uf.union(a,l)
print(ans)
0