結果

問題 No.1117 数列分割
ユーザー face4face4
提出日時 2020-07-18 16:17:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 968 ms
コンパイル使用メモリ 73,708 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-05-07 20:52:05
合計ジャッジ時間 8,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 337 ms
8,064 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
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 #

// なんやかんやでO(N^2.5)になってくれないか
#include<iostream>
#include<vector>
using namespace std;

typedef long long ll;

int main(){
    int n, k, m;
    cin >> n >> k >> m;
    vector<int> v(n+1, 0);
    for(int i = 1; i <= n; i++) cin >> v[i], v[i] += v[i-1];
    vector<vector<ll>> dp(n+1, vector<ll>(k+1, -1));
    dp[0][0] = 0;
    for(int i = 1; i <= n; i++){
        for(int j = (i+m-1)/m; j <= min(i, k-(n-i+m-1)/m); j++){
            for(int l = max(0, i-m); l < i; l++){ // 重い?
                if(dp[l][j-1] != -1)  dp[i][j] = max(dp[i][j], dp[l][j-1]+abs(v[i]-v[l]));
            } 
        }
    }
    cout << dp[n][k] << endl;
    return 0;
}
0