結果

問題 No.277 根掘り葉掘り
ユーザー nebukuro09nebukuro09
提出日時 2016-10-03 16:15:50
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 381 ms / 3,000 ms
コード長 1,095 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 76,564 KB
実行使用メモリ 114,816 KB
最終ジャッジ日時 2024-11-21 15:18:38
合計ジャッジ時間 5,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
77,732 KB
testcase_01 AC 86 ms
77,956 KB
testcase_02 AC 86 ms
77,952 KB
testcase_03 AC 87 ms
77,568 KB
testcase_04 AC 92 ms
77,696 KB
testcase_05 AC 87 ms
77,700 KB
testcase_06 AC 88 ms
77,884 KB
testcase_07 AC 86 ms
77,952 KB
testcase_08 AC 85 ms
77,440 KB
testcase_09 AC 300 ms
93,944 KB
testcase_10 AC 301 ms
114,816 KB
testcase_11 AC 328 ms
96,800 KB
testcase_12 AC 314 ms
98,432 KB
testcase_13 AC 381 ms
98,944 KB
testcase_14 AC 331 ms
96,788 KB
testcase_15 AC 336 ms
96,256 KB
testcase_16 AC 339 ms
97,280 KB
testcase_17 AC 331 ms
96,556 KB
testcase_18 AC 329 ms
96,928 KB
testcase_19 AC 331 ms
97,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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):
    stack = [(start, None)]
    leaves = []
    while len(stack) > 0:
        node, parent = stack.pop()
        if 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, node))
    return leaves

def bfs(starts):
    q = deque()
    for s in starts:
        q.append((s, 0))
    visited = [False for _ in xrange(N)]
    while len(q) > 0:
        node, depth = q.popleft()
        if visited[node]:
            continue
        visited[node] = True
        ans[node] = min(ans[node], depth)
        for nn in rinsetsu[node]:
            if not visited[nn]:
                q.append((nn, depth+1))

leaves = dfs(0) + [0]
bfs(leaves)
for a in ans:
    print a
0