結果

問題 No.417 チューリップバブル
ユーザー convexineqconvexineq
提出日時 2021-02-03 03:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 862 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 77,268 KB
最終ジャッジ日時 2024-06-30 00:11:52
合計ジャッジ時間 11,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,660 KB
testcase_01 AC 40 ms
57,928 KB
testcase_02 AC 41 ms
59,340 KB
testcase_03 AC 38 ms
58,600 KB
testcase_04 AC 33 ms
52,424 KB
testcase_05 AC 31 ms
52,368 KB
testcase_06 AC 40 ms
60,280 KB
testcase_07 AC 38 ms
59,988 KB
testcase_08 AC 47 ms
61,164 KB
testcase_09 AC 59 ms
61,908 KB
testcase_10 AC 66 ms
62,480 KB
testcase_11 AC 156 ms
63,196 KB
testcase_12 AC 155 ms
64,412 KB
testcase_13 AC 85 ms
62,772 KB
testcase_14 AC 223 ms
64,764 KB
testcase_15 AC 53 ms
61,928 KB
testcase_16 AC 56 ms
62,508 KB
testcase_17 AC 140 ms
66,456 KB
testcase_18 AC 142 ms
65,880 KB
testcase_19 AC 141 ms
66,984 KB
testcase_20 AC 420 ms
70,516 KB
testcase_21 AC 418 ms
69,512 KB
testcase_22 AC 421 ms
69,320 KB
testcase_23 AC 419 ms
71,256 KB
testcase_24 AC 36 ms
54,900 KB
testcase_25 AC 420 ms
70,100 KB
testcase_26 AC 74 ms
63,068 KB
testcase_27 AC 305 ms
68,044 KB
testcase_28 AC 422 ms
70,036 KB
testcase_29 AC 415 ms
70,064 KB
testcase_30 AC 414 ms
69,456 KB
testcase_31 AC 420 ms
69,068 KB
testcase_32 AC 33 ms
52,924 KB
testcase_33 AC 48 ms
61,716 KB
testcase_34 AC 114 ms
64,456 KB
testcase_35 AC 836 ms
77,268 KB
testcase_36 AC 814 ms
76,424 KB
testcase_37 AC 862 ms
76,840 KB
testcase_38 AC 844 ms
76,548 KB
testcase_39 AC 840 ms
76,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
m //= 2
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))

def dfs(v,p):
    for u,d in g[v]:
        if u == p: continue
        dfs(u,v)
        for i in range(m,d-1,-1):
            for k in range(i-d+1):
                dp[v][i] = max(dp[v][i],dp[v][i-k-d] + dp[u][k])

dp = [[U[i]]*(m+1) for i in range(n)]
dfs(0,-1)
print(max(dp[0]))
0