結果

問題 No.1117 数列分割
ユーザー tokusakuraitokusakurai
提出日時 2020-07-17 22:18:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,627 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 205,516 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-05-07 11:21:04
合計ジャッジ時間 3,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 8 ms
8,928 KB
testcase_04 AC 8 ms
8,132 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 7 ms
7,496 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 8 ms
7,716 KB
testcase_11 AC 22 ms
21,640 KB
testcase_12 AC 22 ms
22,936 KB
testcase_13 AC 29 ms
30,560 KB
testcase_14 AC 33 ms
32,232 KB
testcase_15 AC 36 ms
38,940 KB
testcase_16 AC 47 ms
43,740 KB
testcase_17 AC 9 ms
7,524 KB
testcase_18 AC 69 ms
73,820 KB
testcase_19 AC 70 ms
73,820 KB
testcase_20 AC 40 ms
37,328 KB
testcase_21 AC 71 ms
73,856 KB
testcase_22 AC 69 ms
72,760 KB
testcase_23 AC 67 ms
72,800 KB
testcase_24 AC 67 ms
71,760 KB
testcase_25 AC 68 ms
71,676 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < n; i++)
#define rep2(i, x, n) for(int i = x; i <= n; i++)
#define rep3(i, x, n) for(int i = x; i >= n; i--)
#define elif else if
#define sp(x) fixed << setprecision(x)
#define pb push_back
#define eb emplace_back
#define all(x) x.begin(), x.end()
#define sz(x) (int)x.size()
using ll = long long;
using ld = long double;
using pii = pair<int, int>;
using pil = pair<int, ll>;
using pli = pair<ll, int>;
using pll = pair<ll, ll>;
const ll MOD = 1e9+7;
//const ll MOD = 998244353;
const int inf = (1<<30)-1;
const ll INF = (1LL<<60)-1;
const ld EPS = 1e-10;
template<typename T> bool chmax(T &x, const T &y) {return (x < y)? (x = y, true) : false;};
template<typename T> bool chmin(T &x, const T &y) {return (x > y)? (x = y, true) : false;};

ll solve(int n, int k, vector<ll> v){
    ll dp[n][k];
    fill(dp[0], dp[n], -INF);
    dp[0][0] = v[0];
    rep2(i, 0, n-2){
        rep(j, k){
            if(dp[i][j] == -INF) continue;
            if(j%2 == 0){
                chmax(dp[i+1][j], dp[i][j]+v[i+1]);
                if(j < k-1) chmax(dp[i+1][j+1], dp[i][j]-v[i+1]);
            }
            else{
                chmax(dp[i+1][j], dp[i][j]-v[i+1]);
                if(j < k-1) chmax(dp[i+1][j+1], dp[i][j]+v[i+1]);
            }
        }
    }
    ll ret = -INF;
    rep(i, k) chmax(ret, dp[n-1][i]);
    return ret;
}

int main(){
    int N, K, M;
    cin >> N >> K >> M;
    vector<ll> A(N);
    rep(i, N) cin >> A[i];
    ll ans = solve(N, K, A);
    rep(i, N) A[i] *= -1;
    chmax(ans, solve(N, K, A));
    cout << ans << endl;
}
0