結果

問題 No.277 根掘り葉掘り
ユーザー matsu7874matsu7874
提出日時 2015-10-04 17:23:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 725 ms / 3,000 ms
コード長 529 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-07-19 19:32:29
合計ジャッジ時間 9,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 690 ms
31,104 KB
testcase_10 AC 602 ms
29,440 KB
testcase_11 AC 685 ms
29,952 KB
testcase_12 AC 688 ms
29,824 KB
testcase_13 AC 725 ms
30,080 KB
testcase_14 AC 692 ms
30,592 KB
testcase_15 AC 693 ms
29,952 KB
testcase_16 AC 686 ms
29,824 KB
testcase_17 AC 679 ms
30,208 KB
testcase_18 AC 687 ms
29,824 KB
testcase_19 AC 675 ms
29,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N = int(input())
tree = [[] for i in range(N)]
for i in range(N - 1):
    x, y = map(int, input().split())
    tree[x - 1].append(y - 1)
    tree[y - 1].append(x - 1)

L = [N * 2] * N
dq = collections.deque()

L[0] = 0
dq.append(0)

for i in range(N):
    if len(tree[i]) == 1:
        L[i] = 0
        dq.append(i)

while dq:
    cur = dq.popleft()
    for t in tree[cur]:
        if L[t] <= L[cur] + 1:
            continue
        L[t] = L[cur] + 1
        dq.append(t)

for i in range(N):
    print(L[i])
0