結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,088 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 214 ms
78,032 KB
testcase_04 AC 157 ms
76,800 KB
testcase_05 AC 40 ms
53,888 KB
testcase_06 AC 82 ms
76,160 KB
testcase_07 AC 78 ms
76,544 KB
testcase_08 AC 202 ms
77,528 KB
testcase_09 AC 117 ms
76,836 KB
testcase_10 AC 199 ms
77,652 KB
testcase_11 AC 511 ms
80,420 KB
testcase_12 AC 515 ms
80,128 KB
testcase_13 AC 545 ms
80,424 KB
testcase_14 AC 664 ms
83,244 KB
testcase_15 AC 650 ms
81,888 KB
testcase_16 AC 875 ms
87,100 KB
testcase_17 AC 205 ms
78,272 KB
testcase_18 AC 95 ms
76,544 KB
testcase_19 AC 1,169 ms
89,472 KB
testcase_20 AC 792 ms
85,848 KB
testcase_21 AC 1,278 ms
89,484 KB
testcase_22 AC 1,109 ms
89,748 KB
testcase_23 AC 1,265 ms
89,192 KB
testcase_24 AC 1,131 ms
89,448 KB
testcase_25 AC 1,156 ms
89,712 KB
testcase_26 AC 41 ms
53,760 KB
testcase_27 AC 157 ms
77,440 KB
testcase_28 AC 187 ms
77,680 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