結果

問題 No.417 チューリップバブル
ユーザー neko0774neko0774
提出日時 2023-01-31 14:12:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 77,376 KB
最終ジャッジ日時 2024-06-30 17:31:02
合計ジャッジ時間 12,639 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,724 KB
testcase_01 AC 43 ms
59,080 KB
testcase_02 AC 41 ms
59,176 KB
testcase_03 AC 42 ms
58,980 KB
testcase_04 AC 38 ms
52,132 KB
testcase_05 AC 37 ms
52,724 KB
testcase_06 AC 45 ms
60,724 KB
testcase_07 AC 44 ms
60,812 KB
testcase_08 AC 55 ms
62,076 KB
testcase_09 AC 69 ms
62,104 KB
testcase_10 AC 76 ms
64,740 KB
testcase_11 AC 171 ms
66,280 KB
testcase_12 AC 172 ms
66,876 KB
testcase_13 AC 95 ms
64,800 KB
testcase_14 AC 245 ms
68,452 KB
testcase_15 AC 60 ms
62,552 KB
testcase_16 AC 59 ms
64,248 KB
testcase_17 AC 158 ms
69,088 KB
testcase_18 AC 156 ms
68,564 KB
testcase_19 AC 158 ms
69,268 KB
testcase_20 AC 472 ms
74,292 KB
testcase_21 AC 459 ms
73,672 KB
testcase_22 AC 468 ms
73,544 KB
testcase_23 AC 462 ms
73,356 KB
testcase_24 AC 44 ms
61,308 KB
testcase_25 AC 466 ms
73,636 KB
testcase_26 AC 86 ms
64,996 KB
testcase_27 AC 339 ms
69,616 KB
testcase_28 AC 465 ms
72,564 KB
testcase_29 AC 461 ms
72,476 KB
testcase_30 AC 464 ms
72,940 KB
testcase_31 AC 459 ms
73,040 KB
testcase_32 AC 39 ms
52,736 KB
testcase_33 AC 58 ms
63,272 KB
testcase_34 AC 131 ms
66,688 KB
testcase_35 AC 919 ms
76,888 KB
testcase_36 AC 906 ms
77,188 KB
testcase_37 AC 960 ms
77,376 KB
testcase_38 AC 930 ms
77,040 KB
testcase_39 AC 931 ms
76,880 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))
dp = [[U[i]]*(M+1) for i in range(N)]
def dfs(x, par=-1):
    for nx, t in G[x]:
        if nx==par:
            continue
        dfs(nx, x)
        for m in range(M+1)[::-1]:
            for mm in range(M-m+1-t):
                T = m+mm+t
                dp[x][T] = max(dp[x][T], dp[x][m]+dp[nx][mm])
dfs(0)
print(max(dp[0]))
0