結果

問題 No.417 チューリップバブル
ユーザー kept1994kept1994
提出日時 2022-10-24 21:21:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,420 bytes
コンパイル時間 1,485 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 85,656 KB
最終ジャッジ日時 2024-07-03 00:17:39
合計ジャッジ時間 26,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
66,824 KB
testcase_01 AC 46 ms
61,300 KB
testcase_02 AC 47 ms
60,304 KB
testcase_03 AC 46 ms
60,492 KB
testcase_04 AC 38 ms
52,076 KB
testcase_05 AC 39 ms
52,332 KB
testcase_06 AC 48 ms
62,696 KB
testcase_07 AC 48 ms
61,516 KB
testcase_08 AC 80 ms
63,652 KB
testcase_09 AC 130 ms
63,084 KB
testcase_10 AC 156 ms
65,068 KB
testcase_11 AC 551 ms
67,048 KB
testcase_12 AC 547 ms
66,944 KB
testcase_13 AC 230 ms
66,064 KB
testcase_14 AC 860 ms
70,488 KB
testcase_15 AC 100 ms
63,644 KB
testcase_16 AC 100 ms
64,812 KB
testcase_17 AC 479 ms
70,852 KB
testcase_18 AC 477 ms
71,520 KB
testcase_19 AC 477 ms
70,676 KB
testcase_20 AC 1,763 ms
76,676 KB
testcase_21 AC 1,770 ms
77,356 KB
testcase_22 AC 1,746 ms
76,804 KB
testcase_23 AC 1,742 ms
77,312 KB
testcase_24 AC 46 ms
59,780 KB
testcase_25 AC 1,750 ms
76,888 KB
testcase_26 AC 197 ms
66,144 KB
testcase_27 AC 1,221 ms
72,968 KB
testcase_28 AC 1,735 ms
76,860 KB
testcase_29 AC 1,735 ms
77,008 KB
testcase_30 AC 1,737 ms
77,200 KB
testcase_31 AC 1,726 ms
77,416 KB
testcase_32 AC 42 ms
58,188 KB
testcase_33 AC 90 ms
63,088 KB
testcase_34 AC 382 ms
67,068 KB
testcase_35 TLE -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N, M = map(int, input().split())
    G = [[] for _ in range(N)]
    U = [int(input()) for _ in range(N)]
    dp = [[U[i]] * (M + 1) for i in range(N)] # dp[node][i] := nodeにおいて、残り時間restで得られる最大のスコア
    for _ in range(N - 1):
        aa, bb, cc = map(int, input().split())
        G[aa].append((bb, cc))
        G[bb].append((aa, cc))

    def dfs(pre: int, now: int):
        for next, cost in G[now]: 
            if next == pre: 
                continue
            dfs(now, next)
            for rest in range(M, cost * 2 - 1, -1):
                for j in range(rest - cost * 2 + 1): 
                    dp[now][rest] = max(dp[now][rest], dp[now][rest - (j + cost * 2)] + dp[next][j])
                    # 子ノードnextに行くには(j + cost)だけ必要になる。
                    # -> その分を確保し、引いた後に残る時間でノードnowにおいて取れる最大のスコアdp[now][rest - (j + cost)] ( <- 他の子ノードを回る分があるのでこれを考慮する)
                    # -> と、子ノードnextに行ったことで得られるスコア dp[next][j] で更新する。
        return
    dfs(-1, 0)
    ans = -1
    for i in range(M + 1):
        # print(dp[0][i]) 
        ans = max(ans, dp[0][i]) 
    print(ans)    
    return


if __name__ == '__main__':
    main()
0