結果

問題 No.1117 数列分割
ユーザー outlineoutline
提出日時 2021-03-25 21:52:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 257 ms / 3,000 ms
コード長 2,384 bytes
コンパイル時間 1,696 ms
コンパイル使用メモリ 148,996 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-18 04:31:08
合計ジャッジ時間 5,467 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 21 ms
4,376 KB
testcase_04 AC 18 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 19 ms
4,380 KB
testcase_09 AC 6 ms
4,376 KB
testcase_10 AC 19 ms
4,376 KB
testcase_11 AC 73 ms
4,380 KB
testcase_12 AC 77 ms
4,380 KB
testcase_13 AC 99 ms
4,376 KB
testcase_14 AC 112 ms
4,376 KB
testcase_15 AC 128 ms
4,380 KB
testcase_16 AC 153 ms
4,376 KB
testcase_17 AC 22 ms
4,380 KB
testcase_18 AC 213 ms
4,376 KB
testcase_19 AC 257 ms
4,376 KB
testcase_20 AC 132 ms
4,380 KB
testcase_21 AC 250 ms
4,380 KB
testcase_22 AC 246 ms
4,380 KB
testcase_23 AC 250 ms
4,376 KB
testcase_24 AC 244 ms
4,376 KB
testcase_25 AC 244 ms
4,376 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 12 ms
4,376 KB
testcase_28 AC 12 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
using namespace std;

using ll = long long;
constexpr int INF = 1001001001;
// constexpr int mod = 1000000007;
constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, M, K, A;
    cin >> N >> K >> M;
    vector<ll> S(N + 1);
    for(int i = 0; i < N; ++i){
        cin >> A;
        S[i + 1] = S[i] + A;
    }

    constexpr ll inf = 1e+17;
    vector<vector<ll>> dp(2, vector<ll>(N + 1, -inf));
    dp[0][0] = dp[1][0] = 0;
    for(int k = 0; k < K; ++k){
        vector<vector<ll>> dp2(2, vector<ll>(N + 1, -inf));
        vector<deque<ll>> slide_max(2);
        vector<deque<int>> idx(2);
        slide_max[0].push_back(dp[0][0]);
        idx[0].push_back(0);
        slide_max[1].push_back(dp[1][0]);
        idx[1].push_back(0);
        for(int i = 0; i < N; ++i){
            ll maxv = max(slide_max[0].front() + S[i + 1], slide_max[1].front() - S[i + 1]);
            chmax(dp2[0][i + 1], maxv - S[i + 1]);
            chmax(dp2[1][i + 1], maxv + S[i + 1]);
            for(int j = 0; j < 2; ++j){
                if(i + 1 - idx[j].front() >= M){
                    slide_max[j].pop_front();
                    idx[j].pop_front();
                }
                while(slide_max[j].size() && dp[j][i + 1] >= slide_max[j].back()){
                    slide_max[j].pop_back();
                    idx[j].pop_back();
                }
                slide_max[j].push_back(dp[j][i + 1]);
                idx[j].push_back(i + 1);
            }
        }
        dp = move(dp2);
    }

    cout << max(dp[0][N] + S[N], dp[1][N] - S[N]) << '\n';
    
    return 0;
}
0