結果

問題 No.417 チューリップバブル
ユーザー neko0774neko0774
提出日時 2023-01-31 14:07:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 575 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 85,752 KB
最終ジャッジ日時 2024-06-30 17:27:44
合計ジャッジ時間 24,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
65,280 KB
testcase_01 AC 43 ms
59,904 KB
testcase_02 AC 43 ms
59,904 KB
testcase_03 AC 44 ms
59,648 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 47 ms
60,800 KB
testcase_07 AC 45 ms
59,776 KB
testcase_08 AC 81 ms
62,208 KB
testcase_09 AC 124 ms
64,000 KB
testcase_10 AC 151 ms
65,024 KB
testcase_11 AC 523 ms
68,736 KB
testcase_12 AC 504 ms
68,608 KB
testcase_13 AC 214 ms
66,560 KB
testcase_14 AC 767 ms
72,192 KB
testcase_15 AC 98 ms
64,768 KB
testcase_16 AC 97 ms
64,512 KB
testcase_17 AC 438 ms
72,704 KB
testcase_18 AC 444 ms
73,216 KB
testcase_19 AC 446 ms
73,088 KB
testcase_20 AC 1,574 ms
77,148 KB
testcase_21 AC 1,567 ms
77,568 KB
testcase_22 AC 1,559 ms
77,184 KB
testcase_23 AC 1,567 ms
77,312 KB
testcase_24 AC 47 ms
60,800 KB
testcase_25 AC 1,540 ms
76,928 KB
testcase_26 AC 183 ms
67,712 KB
testcase_27 AC 1,095 ms
76,416 KB
testcase_28 AC 1,559 ms
77,056 KB
testcase_29 AC 1,545 ms
77,416 KB
testcase_30 AC 1,567 ms
77,108 KB
testcase_31 AC 1,568 ms
77,184 KB
testcase_32 AC 42 ms
58,496 KB
testcase_33 AC 83 ms
62,464 KB
testcase_34 AC 346 ms
71,296 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)]
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