結果

問題 No.417 チューリップバブル
ユーザー Yukino DX.Yukino DX.
提出日時 2023-11-11 12:16:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 696 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 82,688 KB
最終ジャッジ日時 2024-09-26 02:42:35
合計ジャッジ時間 13,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
66,176 KB
testcase_01 AC 51 ms
60,672 KB
testcase_02 AC 51 ms
61,312 KB
testcase_03 AC 52 ms
60,928 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 57 ms
62,720 KB
testcase_07 AC 56 ms
62,208 KB
testcase_08 AC 140 ms
75,904 KB
testcase_09 AC 247 ms
75,904 KB
testcase_10 AC 314 ms
75,776 KB
testcase_11 AC 1,214 ms
76,416 KB
testcase_12 AC 1,204 ms
76,032 KB
testcase_13 AC 493 ms
75,776 KB
testcase_14 AC 1,907 ms
76,544 KB
testcase_15 AC 184 ms
76,160 KB
testcase_16 AC 184 ms
75,648 KB
testcase_17 AC 1,039 ms
76,288 KB
testcase_18 AC 1,048 ms
76,288 KB
testcase_19 AC 1,047 ms
76,288 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import count

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))


dp = [[0] * (m + 1) for _ in range(n)]


def dfs(crr, prv):
    for nxt, _ in g[crr]:
        if nxt != prv:
            dfs(nxt, crr)

    for nxt, t in g[crr]:
        for i in range(m, -1, -1):
            for j in count(0):
                if i < 2 * t + j:
                    break
                dp[crr][i] = max(dp[crr][i], dp[crr][i - (2 * t + j)] + dp[nxt][j])

    for i in range(m + 1):
        dp[crr][i] += u[crr]


dfs(0, n)
print(dp[0][m])
0