結果

問題 No.277 根掘り葉掘り
ユーザー yuki2006yuki2006
提出日時 2015-09-05 02:44:32
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,083 ms / 3,000 ms
コード長 550 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-07-19 03:36:18
合計ジャッジ時間 11,178 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 10 ms
6,016 KB
testcase_02 AC 9 ms
6,016 KB
testcase_03 AC 10 ms
6,144 KB
testcase_04 AC 9 ms
6,144 KB
testcase_05 AC 10 ms
6,016 KB
testcase_06 AC 12 ms
6,016 KB
testcase_07 AC 10 ms
6,016 KB
testcase_08 AC 10 ms
6,016 KB
testcase_09 AC 566 ms
27,392 KB
testcase_10 AC 463 ms
26,624 KB
testcase_11 AC 899 ms
26,624 KB
testcase_12 AC 1,083 ms
27,648 KB
testcase_13 AC 940 ms
27,008 KB
testcase_14 AC 885 ms
27,520 KB
testcase_15 AC 1,041 ms
27,520 KB
testcase_16 AC 1,068 ms
27,904 KB
testcase_17 AC 922 ms
27,904 KB
testcase_18 AC 972 ms
27,520 KB
testcase_19 AC 930 ms
27,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
edge = [[] for _ in xrange(N +1)]

for i in xrange(N - 1):
    x, y = map(int, raw_input().split())
    edge[x].append(y)
    edge[y].append(x)


queue = [1]
dist = [N] * (N + 1)
dist[1] = 0

for i in xrange(1, N + 1):
    if len(edge[i]) == 1:
        dist[i] = 0
        queue.append(i)

while len(queue) > 0:
    current = queue.pop()
    for nxt in edge[current]:
        if dist[nxt] > dist[current] + 1:
            dist[nxt] = dist[current] + 1
            queue.append(nxt)


for i in xrange(1, N + 1):
    print dist[i]
0