結果

問題 No.277 根掘り葉掘り
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-09-06 17:39:21
言語 Python2
(2.7.18)
結果
AC  
実行時間 529 ms / 3,000 ms
コード長 542 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 33,948 KB
最終ジャッジ日時 2024-07-19 04:32:53
合計ジャッジ時間 6,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,528 KB
testcase_01 AC 11 ms
6,528 KB
testcase_02 AC 12 ms
6,528 KB
testcase_03 AC 11 ms
6,528 KB
testcase_04 AC 12 ms
6,528 KB
testcase_05 AC 12 ms
6,528 KB
testcase_06 AC 11 ms
6,528 KB
testcase_07 AC 11 ms
6,400 KB
testcase_08 AC 11 ms
6,528 KB
testcase_09 AC 507 ms
33,948 KB
testcase_10 AC 445 ms
27,984 KB
testcase_11 AC 511 ms
28,056 KB
testcase_12 AC 499 ms
28,056 KB
testcase_13 AC 529 ms
28,376 KB
testcase_14 AC 501 ms
28,724 KB
testcase_15 AC 485 ms
28,880 KB
testcase_16 AC 496 ms
28,464 KB
testcase_17 AC 507 ms
28,904 KB
testcase_18 AC 503 ms
28,868 KB
testcase_19 AC 509 ms
28,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from collections import deque

n = int(raw_input())
G = [[] for _ in xrange(n)]
for _ in xrange(n-1):
    x, y = map(lambda p: int(p)-1, raw_input().split())
    G[x].append(y)
    G[y].append(x)

que = deque([0])
dist = [0] + [float('inf')] * (n - 1)
for v in xrange(1, n):
    if len(G[v]) == 1:
        dist[v] = 0
        que.append(v)

while que:
    v = que.popleft()
    for vv in G[v]:
        if dist[vv] > dist[v] + 1:
            dist[vv] = dist[v] + 1
            que.append(vv)

print '\n'.join(map(str, dist))
0