結果

問題 No.417 チューリップバブル
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-04-01 12:54:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 593 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-06-26 04:42:12
合計ジャッジ時間 29,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
65,792 KB
testcase_01 AC 51 ms
59,776 KB
testcase_02 AC 52 ms
59,648 KB
testcase_03 AC 50 ms
59,520 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 54 ms
61,312 KB
testcase_07 AC 53 ms
60,672 KB
testcase_08 AC 92 ms
63,360 KB
testcase_09 AC 148 ms
63,872 KB
testcase_10 AC 176 ms
65,024 KB
testcase_11 AC 609 ms
68,352 KB
testcase_12 AC 603 ms
68,096 KB
testcase_13 AC 257 ms
66,688 KB
testcase_14 AC 937 ms
71,040 KB
testcase_15 AC 114 ms
65,152 KB
testcase_16 AC 114 ms
65,408 KB
testcase_17 AC 527 ms
71,424 KB
testcase_18 AC 531 ms
72,064 KB
testcase_19 AC 531 ms
71,168 KB
testcase_20 AC 1,919 ms
77,312 KB
testcase_21 AC 1,907 ms
77,568 KB
testcase_22 AC 1,902 ms
76,928 KB
testcase_23 AC 1,907 ms
77,312 KB
testcase_24 AC 56 ms
62,080 KB
testcase_25 AC 1,907 ms
77,184 KB
testcase_26 AC 219 ms
66,944 KB
testcase_27 AC 1,343 ms
77,312 KB
testcase_28 TLE -
testcase_29 AC 1,891 ms
77,312 KB
testcase_30 AC 1,904 ms
77,056 KB
testcase_31 AC 1,888 ms
77,184 KB
testcase_32 AC 49 ms
59,648 KB
testcase_33 AC 101 ms
63,360 KB
testcase_34 AC 426 ms
70,656 KB
testcase_35 TLE -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
u = [int(input()) for _ in range(n)]
graph = [[] for _ in range(n)]
for _ in range(n-1):
    a, b, c = map(int, input().split())
    graph[a].append((b, c))
    graph[b].append((a, c))
dp = [[0]*(m+1) for _ in range(n)]
def dfs(i, parent):
    for j, cost in graph[i]:
        if j == parent:
            continue
        dfs(j, i)
        for k in range(m+1)[::-1]:
            for l in range(cost*2, k+1)[::-1]:
                dp[i][k] = max(dp[i][k], dp[i][k-l]+dp[j][l-cost*2])
    for j in range(m+1):
        dp[i][j] += u[i]
dfs(0, 0)
print(max(dp[0]))
0