結果
問題 | No.277 根掘り葉掘り |
ユーザー | roiti46 |
提出日時 | 2015-09-04 22:47:40 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 493 ms |
コンパイル使用メモリ | 6,784 KB |
実行使用メモリ | 36,352 KB |
最終ジャッジ日時 | 2024-07-19 01:28:01 |
合計ジャッジ時間 | 7,136 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
6,144 KB |
testcase_01 | AC | 9 ms
6,144 KB |
testcase_02 | AC | 10 ms
6,144 KB |
testcase_03 | AC | 10 ms
6,272 KB |
testcase_04 | AC | 10 ms
6,272 KB |
testcase_05 | AC | 11 ms
6,272 KB |
testcase_06 | AC | 10 ms
6,400 KB |
testcase_07 | WA | - |
testcase_08 | AC | 9 ms
6,144 KB |
testcase_09 | WA | - |
testcase_10 | AC | 535 ms
33,152 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 | - |
ソースコード
def dfs(i, dr, dl): R[i] = dr if dl < L[i]: L[i] = dl else: dl = L[i] for j in chil[i]: dfs(j, dr + 1, dl + 1) def up(i, d): if d >= L[i]: return L[i] = d for j in par[i]: up(j, d + 1) N = int(raw_input()) par, chil = [[] for i in xrange(N)], [[] 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) par[y].append(x) R, L = [0] * N, [1e9] * N for i in xrange(N): if len(chil[i]) == 0: up(i, 0) dfs(0, 0, L[0]) for i in xrange(N): print min(R[i], L[i])