結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
65,664 KB
testcase_01 AC 47 ms
61,496 KB
testcase_02 AC 47 ms
60,160 KB
testcase_03 AC 46 ms
60,544 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 51 ms
62,848 KB
testcase_07 AC 52 ms
63,360 KB
testcase_08 AC 90 ms
63,528 KB
testcase_09 AC 149 ms
64,128 KB
testcase_10 AC 184 ms
64,512 KB
testcase_11 AC 665 ms
70,016 KB
testcase_12 AC 669 ms
68,020 KB
testcase_13 AC 277 ms
65,920 KB
testcase_14 AC 1,071 ms
69,760 KB
testcase_15 AC 118 ms
66,688 KB
testcase_16 AC 115 ms
64,512 KB
testcase_17 AC 576 ms
71,424 KB
testcase_18 AC 573 ms
68,964 KB
testcase_19 AC 578 ms
69,120 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 45 ms
59,776 KB
testcase_25 TLE -
testcase_26 AC 234 ms
66,432 KB
testcase_27 AC 1,503 ms
74,232 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 40 ms
56,832 KB
testcase_33 AC 92 ms
64,128 KB
testcase_34 AC 469 ms
66,816 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)

dp = [[U[i]]*(m+1) for i in range(n)]
for v in order[n-1:0:-1]:
    p,d = parent[v],dist[v]
    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])

print(max(dp[0]))
0