結果

問題 No.1117 数列分割
ユーザー tktk_snsntktk_snsn
提出日時 2021-05-15 13:44:02
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 863 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 178,164 KB
最終ジャッジ日時 2024-10-03 01:29:47
合計ジャッジ時間 18,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,536 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 49 ms
54,272 KB
testcase_03 AC 403 ms
84,220 KB
testcase_04 AC 312 ms
83,584 KB
testcase_05 AC 42 ms
54,016 KB
testcase_06 AC 100 ms
76,600 KB
testcase_07 AC 108 ms
76,800 KB
testcase_08 AC 361 ms
83,628 KB
testcase_09 AC 206 ms
79,044 KB
testcase_10 AC 332 ms
83,520 KB
testcase_11 AC 870 ms
102,096 KB
testcase_12 AC 931 ms
103,652 KB
testcase_13 AC 1,225 ms
113,164 KB
testcase_14 AC 1,307 ms
117,796 KB
testcase_15 AC 1,587 ms
125,752 KB
testcase_16 AC 1,732 ms
135,672 KB
testcase_17 AC 339 ms
83,556 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,432 ms
125,372 KB
testcase_21 AC 2,854 ms
174,780 KB
testcase_22 AC 2,712 ms
172,728 KB
testcase_23 AC 2,841 ms
177,352 KB
testcase_24 AC 2,727 ms
174,308 KB
testcase_25 AC 2,632 ms
173,816 KB
testcase_26 AC 46 ms
53,888 KB
testcase_27 AC 343 ms
82,748 KB
testcase_28 AC 315 ms
82,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from itertools import accumulate
inf = 10**18


def sliding_max(A, rng):
    d = deque()
    for i, a in enumerate(A):
        while d and d[0] <= i - rng:
            d.popleft()
        while d and A[d[-1]] < a:
            d.pop()
        d.append(i)
        yield A[d[0]]


N, K, M = map(int, input().split())
A = list(map(int, input().split()))
S = [0] + list(accumulate(A))

# dp[j,i]: i桁目までみた、j個かたまりできた-> max
dp = [[-inf]*(N+1) for _ in range(K+1)]
dp[0][0] = 0
for i in range(K):
    val = tuple(dp[i][j] - S[j] for j in range(N))
    for j, x in enumerate(sliding_max(val, M), 1):
        dp[i+1][j] = max(dp[i+1][j], x + S[j])

    val = tuple(dp[i][j] + S[j] for j in range(N))
    for j, x in enumerate(sliding_max(val, M), 1):
        dp[i+1][j] = max(dp[i+1][j], x - S[j])

print(dp[K][N])
0