結果

問題 No.277 根掘り葉掘り
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-03-13 08:52:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 3,000 ms
コード長 590 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 102,592 KB
最終ジャッジ日時 2024-11-17 20:44:01
合計ジャッジ時間 4,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,016 KB
testcase_01 AC 32 ms
52,496 KB
testcase_02 AC 31 ms
53,220 KB
testcase_03 AC 31 ms
52,668 KB
testcase_04 AC 31 ms
54,048 KB
testcase_05 AC 31 ms
54,004 KB
testcase_06 AC 30 ms
53,016 KB
testcase_07 AC 31 ms
53,844 KB
testcase_08 AC 29 ms
53,272 KB
testcase_09 AC 180 ms
101,228 KB
testcase_10 AC 158 ms
98,216 KB
testcase_11 AC 190 ms
102,116 KB
testcase_12 AC 184 ms
101,448 KB
testcase_13 AC 211 ms
102,592 KB
testcase_14 AC 197 ms
102,464 KB
testcase_15 AC 196 ms
102,340 KB
testcase_16 AC 199 ms
102,464 KB
testcase_17 AC 195 ms
102,108 KB
testcase_18 AC 193 ms
102,060 KB
testcase_19 AC 197 ms
102,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
graph = [[] for _ in range(n)]
for _ in range(n-1):
    x, y = map(int, input().split())
    x -= 1
    y -= 1
    graph[x].append(y)
    graph[y].append(x)
R = [n]*n
R[0] = 0
nodes = [0]
for i in nodes:
    for j in graph[i]:
        if R[j] == n:
            R[j] = R[i]+1
            nodes.append(j)
L = [n]*n
leafs = []
for i in range(1, n):
    if len(graph[i]) == 1:
        L[i] = 0
        leafs.append(i)
for i in leafs:
    for j in graph[i]:
        if L[j] == n:
            leafs.append(j)
        L[j] = min(L[j], L[i]+1)
for i in map(min, R, L):
    print(i)
0