結果

問題 No.1117 数列分割
ユーザー hedwig100hedwig100
提出日時 2020-07-18 15:22:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,620 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 175,644 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 16:50:09
合計ジャッジ時間 4,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 149 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
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);
        plus[0] = dp[0]; minus[0] = dp[0];
        rep(j,N) {
            plus[j + 1] = dp[j + 1] + A[j + 1];
            minus[j + 1] = dp[j + 1] - A[j + 1];
        }
        
        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.front()] <= plus[j + 1]) dq.pop_front();
            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.front()] <= minus[j + 1]) dq.pop_front();
            dq.push_back(j + 1);
        }
    }
    cout << dp.back() << '\n';
    return 0;
}
0