結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
67,172 KB
testcase_01 AC 47 ms
59,884 KB
testcase_02 AC 45 ms
59,516 KB
testcase_03 AC 43 ms
59,616 KB
testcase_04 AC 41 ms
52,600 KB
testcase_05 AC 38 ms
52,616 KB
testcase_06 AC 45 ms
61,348 KB
testcase_07 AC 45 ms
60,640 KB
testcase_08 AC 77 ms
64,348 KB
testcase_09 AC 123 ms
64,404 KB
testcase_10 AC 152 ms
65,416 KB
testcase_11 AC 522 ms
68,820 KB
testcase_12 AC 521 ms
69,100 KB
testcase_13 AC 222 ms
67,520 KB
testcase_14 AC 818 ms
73,532 KB
testcase_15 AC 98 ms
65,712 KB
testcase_16 AC 99 ms
65,640 KB
testcase_17 AC 462 ms
73,052 KB
testcase_18 AC 459 ms
73,492 KB
testcase_19 AC 456 ms
73,560 KB
testcase_20 AC 1,677 ms
77,024 KB
testcase_21 AC 1,656 ms
77,108 KB
testcase_22 AC 1,660 ms
77,104 KB
testcase_23 AC 1,653 ms
77,456 KB
testcase_24 AC 46 ms
61,480 KB
testcase_25 AC 1,673 ms
77,080 KB
testcase_26 AC 189 ms
68,128 KB
testcase_27 AC 1,168 ms
76,964 KB
testcase_28 AC 1,649 ms
77,424 KB
testcase_29 AC 1,637 ms
77,380 KB
testcase_30 AC 1,659 ms
77,528 KB
testcase_31 AC 1,647 ms
77,460 KB
testcase_32 AC 42 ms
59,032 KB
testcase_33 AC 87 ms
62,968 KB
testcase_34 AC 364 ms
72,320 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))
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