結果

問題 No.1117 数列分割
ユーザー ttrttr
提出日時 2020-07-17 22:58:42
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 572 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 368,016 KB
最終ジャッジ日時 2024-11-30 04:02:39
合計ジャッジ時間 48,454 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
58,972 KB
testcase_01 MLE -
testcase_02 AC 38 ms
59,828 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 38 ms
243,600 KB
testcase_06 AC 110 ms
84,572 KB
testcase_07 AC 1,398 ms
245,724 KB
testcase_08 TLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 RE -
testcase_14 MLE -
testcase_15 RE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 RE -
testcase_19 RE -
testcase_20 TLE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 39 ms
53,300 KB
testcase_27 AC 51 ms
62,964 KB
testcase_28 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,M = map(int, input().split())
A = [int(a) for a in input().split()]

S = [0]*(N+1)
for i in range(N):
    S[i+1] = S[i]+abs(A[i])
S2 = [0]*(N+1)
for i in range(N):
    S2[i+1] = S2[i]+A[i]

memo = {}
def f(l, r, n):
    if N-r-1 < n or n*M < N-r-1:
        return 0
    if (l, r, n) in memo:
        return memo[(l, r, n)]
    res = abs(S2[r+1]-S2[l])
    temp = 0
    for i in range(r+1, min(r+1+M, N)):
        temp = max(temp, f(r+1, i, n-1))
    memo[(l, r, n)] = res+temp
    return res+temp

ans = 0
for r in range(M):
    ans = max(ans, f(0, r, K-1))
print(ans)
0