結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 40 ms
53,888 KB
testcase_03 AC 43 ms
54,272 KB
testcase_04 AC 44 ms
54,400 KB
testcase_05 AC 44 ms
54,528 KB
testcase_06 AC 47 ms
54,144 KB
testcase_07 AC 43 ms
54,272 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 218 ms
89,984 KB
testcase_10 AC 204 ms
93,100 KB
testcase_11 AC 245 ms
90,228 KB
testcase_12 AC 237 ms
90,112 KB
testcase_13 AC 267 ms
90,880 KB
testcase_14 AC 236 ms
91,008 KB
testcase_15 AC 244 ms
90,240 KB
testcase_16 AC 236 ms
90,496 KB
testcase_17 AC 244 ms
91,008 KB
testcase_18 AC 235 ms
90,724 KB
testcase_19 AC 258 ms
90,496 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