結果

問題 No.277 根掘り葉掘り
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2017-03-12 12:13:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 958 ms / 3,000 ms
コード長 756 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 118,580 KB
最終ジャッジ日時 2024-06-30 00:21:00
合計ジャッジ時間 8,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,852 KB
testcase_01 AC 32 ms
53,220 KB
testcase_02 AC 33 ms
53,188 KB
testcase_03 AC 35 ms
52,852 KB
testcase_04 AC 34 ms
52,680 KB
testcase_05 AC 33 ms
54,276 KB
testcase_06 AC 33 ms
53,316 KB
testcase_07 AC 38 ms
54,396 KB
testcase_08 AC 32 ms
51,944 KB
testcase_09 AC 204 ms
99,688 KB
testcase_10 AC 958 ms
118,580 KB
testcase_11 AC 660 ms
104,144 KB
testcase_12 AC 816 ms
103,892 KB
testcase_13 AC 767 ms
104,444 KB
testcase_14 AC 727 ms
107,268 KB
testcase_15 AC 562 ms
103,892 KB
testcase_16 AC 673 ms
104,520 KB
testcase_17 AC 623 ms
105,668 KB
testcase_18 AC 572 ms
104,612 KB
testcase_19 AC 606 ms
104,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
edges = [[] for _ in range(n + 1)]
for _ in range(n - 1):
    x, y = [int(i) for i in input().split()]
    edges[x].append(y)
    edges[y].append(x)

zero_nodes = [1] + [i for i, v in list(enumerate(edges))[2:] if len(v) == 1]

node_lengths = [None] * (n + 1)
checked_nodes = [False] * (n + 1)

queue = []

for z in zero_nodes:
    queue.append(z)
    checked_nodes[z] = True
    node_lengths[z] = 0

while True:
    i = queue.pop(0)
    next_root_length = node_lengths[i] + 1
    for t in edges[i]:
        if checked_nodes[t]:
            continue
        queue.append(t)
        checked_nodes[t] = True
        node_lengths[t] = next_root_length
    if len(queue) == 0:
        break

node_lengths.pop(0)
print(*node_lengths, sep='\n')
0