結果

問題 No.277 根掘り葉掘り
ユーザー qibqib
提出日時 2023-01-01 00:13:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 3,000 ms
コード長 693 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 93,232 KB
最終ジャッジ日時 2024-11-26 23:55:14
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 37 ms
53,760 KB
testcase_03 AC 38 ms
54,400 KB
testcase_04 AC 40 ms
54,656 KB
testcase_05 AC 41 ms
54,528 KB
testcase_06 AC 41 ms
54,144 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 AC 38 ms
53,632 KB
testcase_09 AC 207 ms
90,112 KB
testcase_10 AC 196 ms
93,232 KB
testcase_11 AC 248 ms
90,096 KB
testcase_12 AC 220 ms
89,856 KB
testcase_13 AC 271 ms
90,624 KB
testcase_14 AC 235 ms
90,880 KB
testcase_15 AC 240 ms
90,368 KB
testcase_16 AC 241 ms
90,624 KB
testcase_17 AC 250 ms
90,624 KB
testcase_18 AC 267 ms
90,624 KB
testcase_19 AC 232 ms
90,240 KB
権限があれば一括ダウンロードができます

ソースコード

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 = [INF for _ in range(n)]
r[src] = 0
dq = deque([src])
while len(dq) > 0:
  cur = dq.popleft()
  for nxt in g[cur]:
    if r[nxt] < INF:
      continue

    r[nxt] = r[cur] + 1
    dq.append(nxt)

l = [INF for _ in range(n)]
for v in range(n):
  if len(g[v]) == 1:
    l[v] = 0
    dq.append(v)

while len(dq) > 0:
  cur = dq.popleft()
  for nxt in g[cur]:
    if l[nxt] < INF:
      continue

    l[nxt] = l[cur] + 1
    dq.append(nxt)

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