結果

問題 No.277 根掘り葉掘り
ユーザー nebukuro09nebukuro09
提出日時 2016-10-03 15:23:28
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 805 bytes
コンパイル時間 1,676 ms
コンパイル使用メモリ 76,320 KB
実行使用メモリ 249,004 KB
最終ジャッジ日時 2024-11-21 15:17:37
合計ジャッジ時間 43,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
81,300 KB
testcase_01 AC 73 ms
82,144 KB
testcase_02 AC 74 ms
82,724 KB
testcase_03 AC 74 ms
169,400 KB
testcase_04 AC 91 ms
84,776 KB
testcase_05 AC 81 ms
171,236 KB
testcase_06 AC 81 ms
84,432 KB
testcase_07 AC 84 ms
172,376 KB
testcase_08 AC 73 ms
82,212 KB
testcase_09 AC 268 ms
249,004 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
rinsetsu = [[] for _ in xrange(N)]
for i in xrange(N-1):
    x, y = map(int, raw_input().split())
    x -= 1
    y -= 1
    rinsetsu[x].append(y)
    rinsetsu[y].append(x)
ans = [float('inf') for _ in xrange(N)]

def dfs(start, happa=False):
    stack = [(start, 0, None)]
    if happa:
        leaves = []
    while len(stack) > 0:
        node, depth, parent = stack.pop()
        ans[node] = min(ans[node], depth)
        if happa and len(rinsetsu[node]) == 1 and parent is not None:
            leaves.append(node)
            continue
        for nn in rinsetsu[node]:
            if nn == parent:
                continue
            stack.append((nn, depth+1, node))
    if happa:
        return leaves

leaves = dfs(0, True)
for leaf in leaves:
    dfs(leaf)
for a in ans:
    print a
0