結果

問題 No.277 根掘り葉掘り
ユーザー H3PO4H3PO4
提出日時 2020-06-09 09:03:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 829 ms / 3,000 ms
コード長 884 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,668 KB
最終ジャッジ日時 2024-06-09 19:36:05
合計ジャッジ時間 11,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 788 ms
35,328 KB
testcase_10 AC 689 ms
34,944 KB
testcase_11 AC 775 ms
32,876 KB
testcase_12 AC 803 ms
36,120 KB
testcase_13 AC 829 ms
33,224 KB
testcase_14 AC 781 ms
34,164 KB
testcase_15 AC 801 ms
36,668 KB
testcase_16 AC 793 ms
35,816 KB
testcase_17 AC 786 ms
36,160 KB
testcase_18 AC 787 ms
36,020 KB
testcase_19 AC 784 ms
36,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
int1 = lambda x: int(x) - 1
T = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b = map(int1, input().split())
    T[a].append(b)
    T[b].append(a)

# 根からの距離(dfs)
d = deque([0])
root_distance = [None] * N
root_distance[0] = 0
while d:
    v = d.pop()
    for x in T[v]:
        if root_distance[x] is None:
            root_distance[x] = root_distance[v] + 1
            d.append(x)
# print(root_distance)

# 葉からの距離(bfs)
leaves = {i for i in range(N) if len(T[i]) == 1}
leaf_distance = [0 if i in leaves else None for i in range(N)]
d = deque(leaves)
while d:
    v = d.popleft()
    for x in T[v]:
        if leaf_distance[x] is None:
            leaf_distance[x] = leaf_distance[v] + 1
            d.append(x)
# print(leaf_distance)

for i in range(N):
    print(min(root_distance[i], leaf_distance[i]))
0