結果

問題 No.1117 数列分割
ユーザー hedwig100hedwig100
提出日時 2020-07-18 15:56:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,548 bytes
コンパイル時間 1,683 ms
コンパイル使用メモリ 174,924 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 19:22:22
合計ジャッジ時間 4,517 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 15 ms
6,944 KB
testcase_04 AC 13 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 15 ms
6,940 KB
testcase_11 AC 53 ms
6,940 KB
testcase_12 AC 57 ms
6,940 KB
testcase_13 AC 74 ms
6,940 KB
testcase_14 AC 83 ms
6,940 KB
testcase_15 AC 92 ms
6,944 KB
testcase_16 AC 110 ms
6,944 KB
testcase_17 AC 18 ms
6,940 KB
testcase_18 AC 205 ms
6,940 KB
testcase_19 AC 184 ms
6,940 KB
testcase_20 AC 93 ms
6,940 KB
testcase_21 AC 174 ms
6,940 KB
testcase_22 AC 181 ms
6,940 KB
testcase_23 AC 174 ms
6,940 KB
testcase_24 AC 171 ms
6,944 KB
testcase_25 AC 170 ms
6,944 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i ++)
using namespace std;
using ll = long long;
using PL = pair<ll,ll>;
using P = pair<int,int>;
constexpr int INF = 1000000000;
constexpr long long HINF = 1000000000000000;
constexpr long long MOD = 1000000007;// = 998244353;
constexpr double EPS = 1e-4;
constexpr double PI = 3.14159265358979;

int main() {
    int N,K,M; cin >> N >> K >> M;
    vector<ll> A(N + 1);
    rep(i,N) cin >> A[i];
    A.back() = 0;
    for (int i = N - 1;i >= 0;--i) A[i] += A[i + 1]; 

    vector<ll> dp(N + 1,0);
    rep(i,N) dp[i + 1] = abs(A[0] - A[i + 1]);
    
    for (int i = 1;i < K;++i) {
        vector<ll> plus(N + 1),minus(N + 1);
        rep(j,N + 1) {
            plus[j] = dp[j] + A[j];
            minus[j] = dp[j] - A[j];
        }

        deque<int> dq;
        dq.push_back(0);
        rep(j,N) {
            while (!dq.empty() && dq.front() <= j - M) dq.pop_front();
            if (!dq.empty()) dp[j + 1] = max(dp[j + 1],plus[dq.front()] - A[j + 1]);
            while (!dq.empty() && plus[dq.back()] <= plus[j + 1]) dq.pop_back();
            dq.push_back(j + 1);
        }

        dq.clear();
        dq.push_back(0);
        rep(j,N) {
            while (!dq.empty() && dq.front() <= j - M) dq.pop_front();
            if (!dq.empty()) dp[j + 1] = max(dp[j + 1],minus[dq.front()] + A[j + 1]);
            while (!dq.empty() && minus[dq.back()] <= minus[j + 1]) dq.pop_back();
            dq.push_back(j + 1);
        }
    }
    cout << dp.back() << '\n';
    return 0;
}
0