結果

問題 No.417 チューリップバブル
ユーザー neko0774neko0774
提出日時 2023-01-31 14:08:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 635 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 85,524 KB
最終ジャッジ日時 2024-06-30 17:28:24
合計ジャッジ時間 25,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
67,360 KB
testcase_01 AC 45 ms
60,900 KB
testcase_02 AC 48 ms
60,420 KB
testcase_03 AC 44 ms
60,668 KB
testcase_04 AC 37 ms
53,368 KB
testcase_05 AC 37 ms
52,716 KB
testcase_06 AC 46 ms
61,144 KB
testcase_07 AC 46 ms
60,820 KB
testcase_08 AC 81 ms
63,480 KB
testcase_09 AC 126 ms
64,828 KB
testcase_10 AC 154 ms
65,432 KB
testcase_11 AC 532 ms
70,332 KB
testcase_12 AC 526 ms
69,524 KB
testcase_13 AC 224 ms
68,008 KB
testcase_14 AC 820 ms
73,828 KB
testcase_15 AC 98 ms
65,072 KB
testcase_16 AC 99 ms
65,760 KB
testcase_17 AC 464 ms
73,796 KB
testcase_18 AC 460 ms
74,392 KB
testcase_19 AC 461 ms
73,200 KB
testcase_20 AC 1,676 ms
77,896 KB
testcase_21 AC 1,659 ms
77,500 KB
testcase_22 AC 1,659 ms
77,568 KB
testcase_23 AC 1,664 ms
77,160 KB
testcase_24 AC 49 ms
63,076 KB
testcase_25 AC 1,693 ms
77,400 KB
testcase_26 AC 190 ms
67,680 KB
testcase_27 AC 1,169 ms
77,292 KB
testcase_28 AC 1,647 ms
77,392 KB
testcase_29 AC 1,649 ms
77,212 KB
testcase_30 AC 1,657 ms
77,480 KB
testcase_31 AC 1,650 ms
77,520 KB
testcase_32 AC 42 ms
59,252 KB
testcase_33 AC 87 ms
63,380 KB
testcase_34 AC 367 ms
71,176 KB
testcase_35 TLE -
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-2*t):
                T = m+mm+2*t
                dp[x][T] = max(dp[x][T], dp[x][m]+dp[nx][mm])
dfs(0)
print(max(dp[0]))
0