結果

問題 No.277 根掘り葉掘り
ユーザー roiti46roiti46
提出日時 2015-09-04 23:42:10
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-07-19 02:30:06
合計ジャッジ時間 5,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 11 ms
6,272 KB
testcase_06 AC 12 ms
6,272 KB
testcase_07 WA -
testcase_08 AC 11 ms
6,144 KB
testcase_09 WA -
testcase_10 AC 468 ms
19,584 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)

def dfs(i, d):
    R[i] = d
    if len(chil[i]) > 0:
        mn = 1e9
        for j in chil[i]:
            mn = min(mn, dfs(j, d + 1))
        L[i] = mn
    else:
        L[i] = 0
    return L[i] + 1

def dfs2(i, d):
    if d < L[i]:
        L[i] = d
    else:
        d = L[i]
    for j in chil[i]:
        dfs2(j, d + 1)

N = int(raw_input())
chil = [[] for i in xrange(N)]

for loop in xrange(N - 1):
    x, y = map(int, raw_input().split())
    x -= 1
    y -= 1
    chil[x].append(y)

R, L = [0] * N, [1e9] * N
dfs(0, 0)
dfs2(0, L[0])
for i in xrange(N):
    print min(R[i], L[i])
0