結果

問題 No.417 チューリップバブル
ユーザー convexineqconvexineq
提出日時 2021-02-03 02:40:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 851 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-06-30 00:10:49
合計ジャッジ時間 11,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,136 KB
testcase_01 AC 42 ms
58,368 KB
testcase_02 AC 41 ms
59,520 KB
testcase_03 AC 42 ms
59,392 KB
testcase_04 AC 35 ms
52,480 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 43 ms
60,416 KB
testcase_07 AC 43 ms
60,160 KB
testcase_08 AC 49 ms
62,428 KB
testcase_09 AC 64 ms
63,104 KB
testcase_10 AC 75 ms
63,872 KB
testcase_11 AC 156 ms
65,152 KB
testcase_12 AC 156 ms
65,664 KB
testcase_13 AC 94 ms
64,384 KB
testcase_14 AC 230 ms
66,688 KB
testcase_15 AC 59 ms
63,488 KB
testcase_16 AC 59 ms
63,360 KB
testcase_17 AC 148 ms
67,328 KB
testcase_18 AC 149 ms
67,584 KB
testcase_19 AC 146 ms
67,256 KB
testcase_20 AC 424 ms
72,064 KB
testcase_21 AC 418 ms
71,808 KB
testcase_22 AC 421 ms
71,732 KB
testcase_23 AC 423 ms
71,680 KB
testcase_24 AC 35 ms
53,020 KB
testcase_25 AC 422 ms
71,552 KB
testcase_26 AC 82 ms
64,512 KB
testcase_27 AC 312 ms
69,120 KB
testcase_28 AC 419 ms
71,680 KB
testcase_29 AC 419 ms
71,552 KB
testcase_30 AC 424 ms
71,680 KB
testcase_31 AC 424 ms
71,808 KB
testcase_32 AC 34 ms
51,840 KB
testcase_33 AC 51 ms
62,464 KB
testcase_34 AC 120 ms
65,024 KB
testcase_35 AC 823 ms
76,944 KB
testcase_36 AC 825 ms
77,148 KB
testcase_37 AC 851 ms
77,440 KB
testcase_38 AC 833 ms
76,908 KB
testcase_39 AC 841 ms
76,796 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))

dist = [0]*n
parent = [-1]*n
order = [0]
for v in order:
    for u,c in g[v]:
        if parent[v] == u: continue
        dist[u] = c
        parent[u] = v
        order.append(u)

def merge(v,p,d):
    for i in range(m,d-1,-1):
        for k in range(i-d+1):
            dp[p][i] = max(dp[p][i],dp[p][i-k-d] + dp[v][k])

dp = [[U[i]]*(m+1) for i in range(n)]
for i in order[n-1:0:-1]:
    merge(i,parent[i],dist[i])
print(max(dp[0]))
0