結果

問題 No.664 超能力者Aと株価予測
ユーザー htkbhtkb
提出日時 2019-04-01 20:55:52
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 307 ms / 4,000 ms
コード長 533 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 10,568 KB
実行使用メモリ 8,316 KB
最終ジャッジ日時 2023-08-17 12:27:08
合計ジャッジ時間 2,271 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
8,172 KB
testcase_01 AC 15 ms
8,128 KB
testcase_02 AC 16 ms
8,176 KB
testcase_03 AC 15 ms
8,192 KB
testcase_04 AC 16 ms
8,188 KB
testcase_05 AC 15 ms
8,196 KB
testcase_06 AC 21 ms
8,124 KB
testcase_07 AC 20 ms
8,060 KB
testcase_08 AC 80 ms
8,220 KB
testcase_09 AC 19 ms
8,156 KB
testcase_10 AC 169 ms
8,176 KB
testcase_11 AC 307 ms
8,312 KB
testcase_12 AC 268 ms
8,316 KB
testcase_13 AC 186 ms
8,308 KB
testcase_14 AC 16 ms
8,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import accumulate
N, M, K = map(int, input().split())
stock_price = list(map(int, sys.stdin))
dp = [K]*len(stock_price)

for _ in [0]*M:
    for t1, price1 in zip(range(N, -1, -1), stock_price[N::-1]):
        stock_count, rem = dp[t1] // price1, dp[t1] % price1
        for t2, price2 in enumerate(stock_price[t1+1:], start=t1+1):
            if price1 < price2 and dp[t2] < stock_count * price2 + rem:
                dp[t2] = stock_count * price2 + rem

    dp = list(accumulate(dp, max))

print(max(dp))
0