結果

問題 No.1293 2種類の道路
ユーザー marroncastlemarroncastle
提出日時 2020-11-20 22:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 1,464 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 104,636 KB
最終ジャッジ日時 2024-07-23 13:28:40
合計ジャッジ時間 6,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,276 KB
testcase_01 AC 40 ms
53,076 KB
testcase_02 AC 38 ms
54,192 KB
testcase_03 AC 38 ms
52,992 KB
testcase_04 AC 38 ms
53,756 KB
testcase_05 AC 38 ms
53,312 KB
testcase_06 AC 38 ms
53,668 KB
testcase_07 AC 38 ms
52,716 KB
testcase_08 AC 41 ms
54,952 KB
testcase_09 AC 473 ms
88,832 KB
testcase_10 AC 472 ms
88,948 KB
testcase_11 AC 468 ms
88,224 KB
testcase_12 AC 478 ms
88,592 KB
testcase_13 AC 462 ms
89,152 KB
testcase_14 AC 316 ms
104,564 KB
testcase_15 AC 306 ms
104,636 KB
testcase_16 AC 271 ms
92,424 KB
testcase_17 AC 285 ms
98,612 KB
testcase_18 AC 245 ms
98,108 KB
testcase_19 AC 289 ms
96,556 KB
testcase_20 AC 292 ms
96,780 KB
testcase_21 AC 198 ms
76,712 KB
testcase_22 AC 193 ms
77,016 KB
testcase_23 AC 187 ms
76,968 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, D, W = map(int, input().split())
uf1 = UnionFind(N)
uf2 = UnionFind(N)
for i in range(D):
  a,b = map(int, input().split())
  uf1.union(a-1,b-1)
for i in range(W):
  c,d = map(int, input().split())
  uf2.union(c-1,d-1)

ans = 0
for g in uf2.groups():
  goal = uf2.size(g[0])
  start = 0
  check = {}
  for v in g:
    r = uf1.find(v)
    if r not in check:
      start += uf1.size(r)
      check[r] = 1
  ans += (start-1)*goal
print(ans)
0