結果

問題 No.1117 数列分割
ユーザー mkawa2mkawa2
提出日時 2020-07-18 18:23:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,190 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,336 KB
最終ジャッジ日時 2024-05-08 01:41:06
合計ジャッジ時間 23,152 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,384 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 654 ms
11,008 KB
testcase_04 AC 538 ms
11,008 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 39 ms
11,008 KB
testcase_07 AC 37 ms
10,880 KB
testcase_08 AC 632 ms
11,136 KB
testcase_09 AC 199 ms
11,136 KB
testcase_10 AC 665 ms
11,136 KB
testcase_11 AC 2,470 ms
11,264 KB
testcase_12 AC 2,649 ms
11,264 KB
testcase_13 AC 2,773 ms
11,264 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
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
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return sys.stdin.readline()[:-1]

def solve():
    cs = [0]
    for a in aa: cs.append(cs[-1] + a)
    dp = [-inf] * (n + 1)
    dp[0] = 0
    for j in range(k):
        q1 = deque()
        q2 = deque()
        ndp = [-inf] * (n + 1)
        for i in range(n + 1):
            while q1 and q1[0][0] < i - m: q1.popleft()
            while q2 and q2[0][0] < i - m: q2.popleft()
            if q1: ndp[i] = max(q1[0][1] + cs[i], q2[0][1] - cs[i])
            if dp[i] == -inf: continue
            val = dp[i] - cs[i]
            while q1 and q1[-1][1] <= val: q1.pop()
            q1.append((i, val))
            val = dp[i] + cs[i]
            while q2 and q2[-1][1] <= val: q2.pop()
            q2.append((i, val))
            # print(q1,q2)
        dp = ndp
    print(dp[-1])

inf=10**16
n,k,m=MI()
aa=LI()
solve()
0