結果

問題 No.664 超能力者Aと株価予測
ユーザー maspymaspy
提出日時 2020-03-12 19:37:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 971 ms / 4,000 ms
コード長 572 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,212 KB
最終ジャッジ日時 2024-11-19 04:42:53
合計ジャッジ時間 11,627 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 455 ms
43,952 KB
testcase_01 AC 461 ms
44,208 KB
testcase_02 AC 463 ms
44,004 KB
testcase_03 AC 463 ms
43,960 KB
testcase_04 AC 471 ms
43,956 KB
testcase_05 AC 466 ms
44,212 KB
testcase_06 AC 477 ms
43,828 KB
testcase_07 AC 475 ms
43,828 KB
testcase_08 AC 579 ms
44,212 KB
testcase_09 AC 469 ms
43,824 KB
testcase_10 AC 950 ms
44,080 KB
testcase_11 AC 945 ms
43,956 KB
testcase_12 AC 952 ms
43,960 KB
testcase_13 AC 971 ms
43,964 KB
testcase_14 AC 476 ms
43,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np


# %%
N, M, K = map(int, readline().split())
A = np.array([0] + read().split(), np.int64)

# %%
dp = np.zeros((N + 2, M + 1), np.int64)
dp[0, 0] = K
dp[1, 0] = K
for sell in range(2, N + 2):
    dp[sell] = dp[sell - 1]
    for buy in range(1, sell):
        x = dp[buy - 1, :-1] + dp[buy - 1, :-1] // A[buy] * (A[sell] - A[buy])
        np.maximum(dp[sell, 1:], x, out=dp[sell, 1:])


# %%
print(dp.max())
0