結果

問題 No.277 根掘り葉掘り
ユーザー qibqib
提出日時 2022-12-31 03:49:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,308 KB
最終ジャッジ日時 2024-05-04 14:20:52
合計ジャッジ時間 5,061 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 WA -
testcase_03 AC 43 ms
54,272 KB
testcase_04 AC 40 ms
54,272 KB
testcase_05 AC 42 ms
54,528 KB
testcase_06 AC 44 ms
54,272 KB
testcase_07 AC 42 ms
54,144 KB
testcase_08 AC 40 ms
53,504 KB
testcase_09 AC 211 ms
99,328 KB
testcase_10 AC 208 ms
107,308 KB
testcase_11 AC 262 ms
92,544 KB
testcase_12 AC 211 ms
95,104 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = 1 << 60

n = int(input())

g = [[] for _ in range(n)]
for _ in range(n - 1):
  x, y = map(int, input().split())
  x -= 1
  y -= 1
  g[x].append(y)
  g[y].append(x)

src = 0
r = [0 for _ in range(n)]
l = [INF for _ in range(n)]
st = [~ src, src]
par = [None for _ in range(n)]
while len(st) > 0:
  cur = st.pop()
  if cur >= 0:
    for nxt in g[cur]:
      if nxt == par[cur]:
        continue
      r[nxt] = r[cur] + 1
      par[nxt] = cur
      st.append(~ nxt)
      st.append(nxt)
  else:
    if l[~ cur] == INF:
      l[~ cur] = 0
    if not par[~ cur] is None:
      l[par[~ cur]] = min(l[par[~ cur]], l[~ cur] + 1)

for i in range(n):
  print(min(l[i], r[i]))
0