結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 11 ms
6,016 KB
testcase_02 WA -
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 12 ms
6,144 KB
testcase_05 AC 11 ms
6,272 KB
testcase_06 AC 11 ms
6,272 KB
testcase_07 WA -
testcase_08 AC 11 ms
6,144 KB
testcase_09 WA -
testcase_10 AC 433 ms
19,712 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

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)
for i in xrange(N):
    print min(R[i], L[i])
0