結果

問題 No.417 チューリップバブル
ユーザー convexineqconvexineq
提出日時 2021-02-03 01:31:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 680 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-06-30 00:02:27
合計ジャッジ時間 27,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
66,560 KB
testcase_01 AC 48 ms
60,544 KB
testcase_02 AC 49 ms
60,800 KB
testcase_03 AC 47 ms
60,544 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 53 ms
64,272 KB
testcase_07 AC 55 ms
64,256 KB
testcase_08 AC 84 ms
64,000 KB
testcase_09 AC 133 ms
65,408 KB
testcase_10 AC 161 ms
66,048 KB
testcase_11 AC 554 ms
69,376 KB
testcase_12 AC 552 ms
69,504 KB
testcase_13 AC 235 ms
67,200 KB
testcase_14 AC 861 ms
72,448 KB
testcase_15 AC 104 ms
65,408 KB
testcase_16 AC 105 ms
65,408 KB
testcase_17 AC 483 ms
72,320 KB
testcase_18 AC 484 ms
72,832 KB
testcase_19 AC 481 ms
72,320 KB
testcase_20 AC 1,762 ms
77,144 KB
testcase_21 AC 1,742 ms
77,312 KB
testcase_22 AC 1,761 ms
77,064 KB
testcase_23 AC 1,743 ms
77,056 KB
testcase_24 AC 47 ms
60,160 KB
testcase_25 AC 1,749 ms
77,272 KB
testcase_26 AC 197 ms
67,968 KB
testcase_27 AC 1,288 ms
76,672 KB
testcase_28 AC 1,739 ms
77,072 KB
testcase_29 AC 1,735 ms
77,448 KB
testcase_30 AC 1,750 ms
77,440 KB
testcase_31 AC 1,731 ms
77,272 KB
testcase_32 AC 43 ms
58,368 KB
testcase_33 AC 94 ms
64,384 KB
testcase_34 AC 387 ms
69,120 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)]
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] = 2*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 = [[0]*(m+1) for _ in range(n)]
for i in order[n-1:0:-1]:
    for j in range(m+1): dp[i][j] += U[i]
    merge(i,parent[i],dist[i])
print(max(dp[0])+U[0])
0