結果

問題 No.416 旅行会社
ユーザー qibqib
提出日時 2022-11-15 22:18:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 938 ms / 4,000 ms
コード長 1,735 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 199,648 KB
最終ジャッジ日時 2024-05-08 16:09:05
合計ジャッジ時間 10,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 361 ms
136,300 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 40 ms
52,864 KB
testcase_05 AC 42 ms
53,632 KB
testcase_06 AC 42 ms
54,144 KB
testcase_07 AC 62 ms
67,712 KB
testcase_08 AC 139 ms
78,208 KB
testcase_09 AC 237 ms
82,636 KB
testcase_10 AC 394 ms
136,304 KB
testcase_11 AC 404 ms
136,060 KB
testcase_12 AC 408 ms
136,044 KB
testcase_13 AC 352 ms
135,928 KB
testcase_14 AC 873 ms
199,176 KB
testcase_15 AC 938 ms
199,648 KB
testcase_16 AC 910 ms
199,172 KB
testcase_17 AC 888 ms
199,296 KB
testcase_18 AC 872 ms
199,428 KB
testcase_19 AC 701 ms
158,040 KB
testcase_20 AC 655 ms
157,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
  def __init__(self, n):
    self.node = [-1 for _ in range(n)]

  def root(self, v):
    if self.node[v] < 0:
      return v

    st = []
    while self.node[v] >= 0:
      st.append(v)
      v = self.node[v]

    for u in st:
      self.node[u] = v

    return v

  def size(self, v):
    v = self.root(v)
    return (- self.node[v])

  def same(self, u, v):
    return self.root(u) == self.root(v)

  def unite(self, u, v):
    ru = self.root(u)
    rv = self.root(v)
    if ru == rv:
      return

    du = self.node[ru]
    dv = self.node[rv]
    if du <= dv:
      self.node[rv] = ru
      self.node[ru] += dv
    else:
      self.node[ru] = rv
      self.node[rv] += du

n, m, q = map(int, input().split())
edges = []
idx = {}
for _ in range(m):
  a, b = map(int, input().split())
  a -= 1
  b -= 1
  edges.append((a, b))
  idx[a, b] = len(idx)

queries = []
for _ in range(q):
  c, d = map(int, input().split())
  c -= 1
  d -= 1
  queries.append(idx[c, d])

es = set([i for i in range(m)]) - set(queries)
uf = UnionFind(n)
comps = [[] for _ in range(n)]
for e in es:
  a, b = edges[e]
  uf.unite(a, b)

for v in range(n):
  r = uf.root(v)
  comps[r].append(v)

ans = [None for _ in range(n)]
r0 = uf.root(0)
for v in comps[r0]:
  ans[v] = -1

for i in range(q - 1, -1, -1):
  c, d = edges[queries[i]]
  rc = uf.root(c)
  rd = uf.root(d)
  if rc == rd:
    continue

  r0 = uf.root(0)
  if r0 == rc:
    for v in comps[rd]:
      ans[v] = i + 1
  elif r0 == rd:
    for v in comps[rc]:
      ans[v] = i + 1

  uf.unite(rc, rd)
  r = uf.root(rc)
  while len(comps[rc + rd - r]) > 0:
    comps[r].append(comps[rc + rd - r].pop())

for v in range(n):
  if ans[v] is None:
    ans[v] = 0

print(*ans[1:], sep="\n")
0