結果

問題 No.417 チューリップバブル
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-03-31 18:19:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 63,016 KB
最終ジャッジ日時 2024-06-26 03:37:25
合計ジャッジ時間 3,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 41 ms
53,556 KB
testcase_02 WA -
testcase_03 AC 42 ms
52,532 KB
testcase_04 AC 39 ms
52,972 KB
testcase_05 AC 41 ms
52,600 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 47 ms
60,900 KB
testcase_10 WA -
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 -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 43 ms
57,296 KB
testcase_33 AC 45 ms
58,984 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 54 ms
61,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
u = [int(input()) for _ in range(n)]
g = [[] for _ in range(n)]
for _ in range(n-1):
    a, b, c = map(int, input().split())
    g[a].append((b, c))
    g[b].append((a, c))
t = [0]*(m+1)
t[m] = u[0]
def f(i, p):
    for j, c in g[i]:
        if j == p:
            continue
        for k in range(c*2, m+1):
            t[k-c*2] = max(t[k-c*2], t[k]+u[j])
        f(j, i)
f(0, 0)
print(max(t))
0