結果

問題 No.277 根掘り葉掘り
ユーザー nebukuro09nebukuro09
提出日時 2016-09-21 17:37:05
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 794 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 328,408 KB
最終ジャッジ日時 2024-11-17 10:31:08
合計ジャッジ時間 46,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
82,816 KB
testcase_01 AC 103 ms
227,960 KB
testcase_02 AC 97 ms
82,688 KB
testcase_03 AC 100 ms
328,408 KB
testcase_04 AC 144 ms
85,760 KB
testcase_05 AC 130 ms
251,020 KB
testcase_06 AC 124 ms
84,352 KB
testcase_07 WA -
testcase_08 AC 96 ms
82,560 KB
testcase_09 TLE -
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 #

import Queue

N = input()
rinsetsu = [[] for i in xrange(N)]
is_leaf = [True for i in xrange(N)]
for _ in xrange(N-1):
    a, b = map(int, raw_input().split())
    rinsetsu[a-1].append(b-1)
    rinsetsu[b-1].append(a-1)
    is_leaf[a-1] = False
leaves = [i for i in xrange(N) if is_leaf[i]]

ans = [float('inf') for i in xrange(N)]
def bfs(start):
    visited = [False for i in xrange(N)]
    q = Queue.Queue()
    q.put((start, 0))
    while not q.empty():
        node, depth = q.get()
        if visited[node]:
            continue
        ans[node] = min(ans[node], depth)
        visited[node] = True
        for nn in rinsetsu[node]:
            if visited[nn]:
                continue
            q.put((nn, depth+1))

bfs(0)
for leaf in leaves:
    bfs(leaf)
for a in ans:
    print a
0