結果

問題 No.1117 数列分割
ユーザー first_vilfirst_vil
提出日時 2020-07-04 17:10:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 973 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-05-07 11:16:19
合計ジャッジ時間 15,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,384 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 2,719 ms
12,288 KB
testcase_04 AC 2,277 ms
11,904 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 70 ms
11,136 KB
testcase_07 AC 53 ms
11,008 KB
testcase_08 AC 2,054 ms
11,776 KB
testcase_09 AC 560 ms
11,520 KB
testcase_10 AC 2,111 ms
11,776 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,k,m=map(int,input().split())
a=list(map(int,input().split()))+[0]

for i in range(n-1,-1,-1):
    a[i]+=a[i+1]

plus=[deque([]) for j in range(k)]
plus[0].append((-1,a[0]))
minus=[deque([]) for j in range(k)]
minus[0].append((-1,-a[0]))

for i in range(n):
    for j in range(k-1,-1,-1):
        res=0
        while plus[j] and plus[j][0][0]<i-m:
            plus[j].popleft()
        while minus[j] and minus[j][0][0]<i-m:
            minus[j].popleft()
        if plus[j]:
            res=max(res,plus[j][0][1]-a[i+1])
        if minus[j]:
            res=max(res,minus[j][0][1]+a[i+1])
        if j+1<k:
            while plus[j+1] and plus[j+1][-1][1]<=res+a[i+1]:
                plus[j+1].pop()
            while minus[j+1] and minus[j+1][-1][1]<=res-a[i+1]:
                minus[j+1].pop()
            plus[j+1].append((i,res+a[i+1]))
            minus[j+1].append((i,res-a[i+1]))
        if i==n-1 and j==k-1:
            print(res)
0