結果

問題 No.1117 数列分割
ユーザー nebukuro09nebukuro09
提出日時 2020-07-17 22:20:07
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,358 bytes
コンパイル時間 921 ms
コンパイル使用メモリ 130,532 KB
実行使用メモリ 218,928 KB
最終ジャッジ日時 2024-06-22 07:42:02
合計ジャッジ時間 6,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 39 ms
26,316 KB
testcase_04 AC 36 ms
26,548 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 34 ms
27,708 KB
testcase_09 AC 13 ms
14,080 KB
testcase_10 AC 35 ms
31,652 KB
testcase_11 AC 135 ms
101,064 KB
testcase_12 AC 138 ms
94,036 KB
testcase_13 AC 177 ms
94,816 KB
testcase_14 AC 190 ms
112,524 KB
testcase_15 AC 238 ms
135,664 KB
testcase_16 AC 274 ms
170,084 KB
testcase_17 AC 61 ms
87,324 KB
testcase_18 AC 446 ms
218,768 KB
testcase_19 AC 429 ms
218,704 KB
testcase_20 AC 227 ms
147,368 KB
testcase_21 AC 435 ms
218,892 KB
testcase_22 AC 431 ms
218,740 KB
testcase_23 AC 429 ms
218,848 KB
testcase_24 AC 424 ms
218,688 KB
testcase_25 AC 425 ms
218,928 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdlib, std.datetime;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto K = s[1];
    auto M = s[2];
    auto A = readln.split.map!(to!long).array;

    auto S = new long[][](N, N);
    foreach (i; 0..N) {
        long tmp = 0;
        foreach (j; i..N) {
            tmp += A[j];
            S[i][j] = abs(tmp);
        }
    }

    long calc(bool init_pos) {
        auto dp = new long[][](N+1, K+1);
        foreach (i; 0..N+1) dp[i][] = -(1L << 59);
        dp[0][0] = 0;
        foreach (i; 0..N) {
            bool positive = init_pos;
            foreach (j; 0..K) {
                if (positive) {
                    dp[i+1][j] = max(dp[i+1][j], dp[i][j] + A[i]);
                    dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j] + A[i]);
                } else {
                    dp[i+1][j] = max(dp[i+1][j], dp[i][j] - A[i]);
                    dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j] - A[i]);
                }
                positive = !positive;
            }
        }
        long ans = 0;
        foreach (j; 0..K+1) ans = max(ans, dp[N][j]);
        return ans;
    }

    writeln(max(calc(true), calc(false)));
}

0