結果

問題 No.1117 数列分割
ユーザー mkawa2mkawa2
提出日時 2023-05-18 17:55:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,553 ms / 3,000 ms
コード長 617 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,640 KB
最終ジャッジ日時 2024-12-16 07:34:22
合計ジャッジ時間 18,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,632 KB
testcase_01 AC 49 ms
53,248 KB
testcase_02 AC 49 ms
53,504 KB
testcase_03 AC 258 ms
77,784 KB
testcase_04 AC 216 ms
76,288 KB
testcase_05 AC 48 ms
53,504 KB
testcase_06 AC 103 ms
76,288 KB
testcase_07 AC 101 ms
76,160 KB
testcase_08 AC 256 ms
77,400 KB
testcase_09 AC 144 ms
76,800 KB
testcase_10 AC 250 ms
77,692 KB
testcase_11 AC 654 ms
80,796 KB
testcase_12 AC 673 ms
79,872 KB
testcase_13 AC 669 ms
79,776 KB
testcase_14 AC 879 ms
83,248 KB
testcase_15 AC 877 ms
81,536 KB
testcase_16 AC 1,223 ms
86,840 KB
testcase_17 AC 257 ms
78,276 KB
testcase_18 AC 118 ms
76,160 KB
testcase_19 AC 1,553 ms
89,600 KB
testcase_20 AC 1,063 ms
85,344 KB
testcase_21 AC 1,543 ms
89,616 KB
testcase_22 AC 1,547 ms
89,640 KB
testcase_23 AC 1,521 ms
89,464 KB
testcase_24 AC 1,504 ms
89,588 KB
testcase_25 AC 1,530 ms
89,592 KB
testcase_26 AC 47 ms
53,760 KB
testcase_27 AC 184 ms
77,568 KB
testcase_28 AC 219 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,k,m=map(int,input().split())
a=list(map(int,input().split()))
s=[0]*(n+1)
for i in range(n):s[i+1]=s[i]+a[i]

def push(q,i,val):
    while q and q[-1][-1]<=val:q.pop()
    q.append((i,val))

dp=[0]+[-1]*n
for _ in range(k):
    q1=deque()
    q2=deque()
    ndp=[-1]*(n+1)
    for i in range(n+1):
        if q1 and q1[0][0]<i-m:q1.popleft()
        if q2 and q2[0][0]<i-m:q2.popleft()
        if q1:ndp[i]=q1[0][1]+s[i]
        if q2:ndp[i]=max(ndp[i],q2[0][1]-s[i])
        if dp[i]!=-1:
            push(q1,i,dp[i]-s[i])
            push(q2,i,dp[i]+s[i])
    dp=ndp

print(dp[-1])
0