結果

問題 No.417 チューリップバブル
ユーザー neko0774neko0774
提出日時 2023-01-31 13:51:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 641 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 84,052 KB
最終ジャッジ日時 2024-06-30 17:19:40
合計ジャッジ時間 13,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
68,700 KB
testcase_01 AC 45 ms
60,944 KB
testcase_02 AC 45 ms
61,736 KB
testcase_03 AC 45 ms
61,752 KB
testcase_04 AC 41 ms
58,620 KB
testcase_05 AC 40 ms
58,864 KB
testcase_06 AC 46 ms
61,360 KB
testcase_07 AC 46 ms
61,576 KB
testcase_08 AC 140 ms
75,792 KB
testcase_09 AC 264 ms
75,820 KB
testcase_10 AC 344 ms
76,044 KB
testcase_11 AC 619 ms
76,520 KB
testcase_12 AC 1,374 ms
76,348 KB
testcase_13 AC 289 ms
75,792 KB
testcase_14 TLE -
testcase_15 AC 112 ms
75,816 KB
testcase_16 AC 112 ms
75,724 KB
testcase_17 AC 510 ms
76,416 KB
testcase_18 AC 508 ms
76,240 KB
testcase_19 AC 508 ms
76,424 KB
testcase_20 AC 1,833 ms
77,448 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
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])
dp = [[U[i]]*(M+1) for i in range(N)]
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
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 = m+mm+2*t
                if T<M+1: dp[x][T] = max(dp[x][T], dp[x][m]+dp[nx][mm])
dfs(0)
print(max(dp[0]))
0