結果

問題 No.1117 数列分割
ユーザー yukudoyukudo
提出日時 2020-07-19 21:32:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 250 ms / 3,000 ms
コード長 2,967 bytes
コンパイル時間 1,457 ms
コンパイル使用メモリ 174,808 KB
実行使用メモリ 74,240 KB
最終ジャッジ日時 2024-05-09 20:36:27
合計ジャッジ時間 5,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
74,112 KB
testcase_01 AC 22 ms
74,208 KB
testcase_02 AC 20 ms
74,112 KB
testcase_03 AC 40 ms
74,112 KB
testcase_04 AC 35 ms
74,240 KB
testcase_05 AC 21 ms
74,112 KB
testcase_06 AC 23 ms
73,984 KB
testcase_07 AC 21 ms
74,112 KB
testcase_08 AC 36 ms
74,112 KB
testcase_09 AC 27 ms
74,152 KB
testcase_10 AC 38 ms
74,032 KB
testcase_11 AC 86 ms
74,240 KB
testcase_12 AC 90 ms
74,228 KB
testcase_13 AC 111 ms
74,112 KB
testcase_14 AC 121 ms
74,192 KB
testcase_15 AC 137 ms
74,176 KB
testcase_16 AC 159 ms
74,240 KB
testcase_17 AC 41 ms
74,240 KB
testcase_18 AC 225 ms
74,200 KB
testcase_19 AC 250 ms
74,140 KB
testcase_20 AC 142 ms
74,240 KB
testcase_21 AC 247 ms
74,116 KB
testcase_22 AC 236 ms
74,240 KB
testcase_23 AC 234 ms
74,240 KB
testcase_24 AC 221 ms
74,228 KB
testcase_25 AC 228 ms
74,240 KB
testcase_26 AC 21 ms
74,112 KB
testcase_27 AC 28 ms
74,240 KB
testcase_28 AC 30 ms
74,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define REP(i,n) for(int i=0,_n=(int)(n);i<_n;++i)
#define ALL(v) (v).begin(),(v).end()
#define CLR(t,v) memset(t,(v),sizeof(t))
template<class T1,class T2>ostream& operator<<(ostream& os,const pair<T1,T2>&a){return os<<"("<<a.first<<","<<a.second<< ")";}
template<class T>void pv(T a,T b){for(T i=a;i!=b;++i)cout<<(*i)<<" ";cout<<endl;}
template<class T>void chmin(T&a,const T&b){if(a>b)a=b;}
template<class T>void chmax(T&a,const T&b){if(a<b)a=b;}

ll nextLong() { ll x; scanf("%lld", &x); return x;}


// スライド最小値
// 蟻本のアルゴリズム。
// 幅k=10の最小値を求めるとして、1,3,6,2,4,... という入力数列を左から順に見ていったときに、
// 2に着いた時点で3,6は捨てても構わないよねということを利用してdequeでがんばる
//
// K : 区間の幅
// push(val, pos) : val 区間の右端が pos になるように移動させる。
// get(pos) : 区間の右端が pos になるように移動させて、そのときの最小値を返す。
// get(pos, &isEmpty) : deque が空のときには isEmpty に true がセットされ、無効な値が返される。
//
// push/get で指定する pos は時間とともに単調増加すること。
//
struct SlideMin {
  int K;
  deque<ll> idx, data;

  SlideMin(int K) {
    this->K = K;
  }

  void move(int pos) {
    while (!idx.empty() && pos - idx.front() >= K) {
      idx.pop_front();
      data.pop_front();
    }
  }

  void push(ll val, int pos) {
    move(pos);
    while (!data.empty() && data.back() >= val) { // min: >=, max: <=
      idx.pop_back();
      data.pop_back();
    }
    idx.push_back(pos);
    data.push_back(val);
  }

  ll get(int pos) {
    bool dummy;
    return get(pos, dummy);
  }

  ll get(int pos, bool& empty) { // pos: right edge of the window (closed interval).
    move(pos);
    empty = data.empty();
    if (empty) return 0; // return value is meaningless.
    return data.front();
  }

};

const ll INF = 1LL << 61;
ll dp[3005][3005];

int main2() {
  REP(i, 3005) REP(j, 3005) dp[i][j] = -INF;

  int N = nextLong();
  int K = nextLong();
  int M = nextLong();

  vector<ll> A(N), S(N+1);
  REP(i, N) A[i] = nextLong();
  S[0] = 0;
  REP(i, N) S[i+1] = S[i] + A[i];

  // pv(ALL(A));
  // pv(ALL(S));

  dp[0][0] = 0;
  for (int k = 1; k <= K; k++) {

    vector<ll> X(N+1), Y(N+1);
    for (int i = 0; i <= N; i++) {
      X[i] = dp[k-1][i] - S[i];
      Y[i] = dp[k-1][i] + S[i];
    }
    SlideMin sX(M), sY(M);

    for (int n = 1; n <= N; n++) {
      sX.push(-X[n-1], n-1);
      sY.push(-Y[n-1], n-1);
      ll val1 = -sX.get(n-1);
      ll val2 = -sY.get(n-1);
      ll val = max(val1 + S[n], val2 - S[n]);
      dp[k][n] = val;
    }
    // pv(dp[k], dp[k]+N+1);

  }

  ll ans = dp[K][N];
  cout << ans << endl;
  return 0;
}

int main() {

#ifdef LOCAL
  for (;!cin.eof();cin>>ws)
#endif
    main2();
  return 0;
}
0