結果

問題 No.1117 数列分割
ユーザー QDSNQDSN
提出日時 2020-07-19 21:31:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 850 bytes
コンパイル時間 1,511 ms
コンパイル使用メモリ 171,880 KB
実行使用メモリ 94,336 KB
最終ジャッジ日時 2024-12-17 14:02:20
合計ジャッジ時間 45,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
37,408 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 31 ms
40,704 KB
testcase_04 AC 201 ms
14,752 KB
testcase_05 AC 1 ms
44,068 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 2 ms
80,672 KB
testcase_08 AC 376 ms
14,496 KB
testcase_09 AC 31 ms
79,520 KB
testcase_10 AC 474 ms
14,500 KB
testcase_11 TLE -
testcase_12 AC 967 ms
29,728 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 866 ms
38,912 KB
testcase_16 TLE -
testcase_17 AC 1,025 ms
7,680 KB
testcase_18 AC 66 ms
73,728 KB
testcase_19 AC 162 ms
73,728 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 16 ms
6,816 KB
testcase_28 AC 15 ms
78,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
typedef long long ll;
#define MOD 1000000007
using namespace std;
int main() {
    ll n, k, m;
    cin >> n >> k >> m;
    vector<ll> a(n), rui(n + 1, 0);
    for(int i = 0; i < n; i++) {
        cin >> a[i];
        rui[i + 1] = rui[i] + a[i];
    }
    vector<vector<ll>> dp(n + 1, vector<ll>(k + 1, LLONG_MIN / 3));
    dp[0][0] = 0;
    for(int i = 0; i < n; i++) {
        for(int j = 0; j < min(m, ll(i) + 1); j++) {
            for(int l = 0; l < k; l++) {
                if(i - j >= 0) {
                    dp[i + 1][l + 1] =
                        max(dp[i + 1][l + 1],
                            dp[i - j][l] + abs(rui[i + 1] - rui[i - j]));
                } else {
                    break;
                }
            }
        }
    }
    cout << dp[n][k] << endl;
}
0