結果

問題 No.1117 数列分割
ユーザー beetbeet
提出日時 2020-07-17 22:34:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,991 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 208,804 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-05-07 11:28:26
合計ジャッジ時間 15,329 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 42 ms
11,648 KB
testcase_04 AC 69 ms
10,624 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 80 ms
9,472 KB
testcase_09 AC 19 ms
6,944 KB
testcase_10 AC 81 ms
9,344 KB
testcase_11 AC 369 ms
26,112 KB
testcase_12 AC 362 ms
27,904 KB
testcase_13 AC 526 ms
38,016 KB
testcase_14 AC 599 ms
38,144 KB
testcase_15 AC 520 ms
47,488 KB
testcase_16 AC 826 ms
44,416 KB
testcase_17 AC 83 ms
7,736 KB
testcase_18 AC 505 ms
74,496 KB
testcase_19 AC 575 ms
74,624 KB
testcase_20 AC 716 ms
37,888 KB
testcase_21 AC 1,405 ms
74,624 KB
testcase_22 AC 1,392 ms
73,728 KB
testcase_23 AC 1,390 ms
73,472 KB
testcase_24 AC 1,355 ms
72,576 KB
testcase_25 AC 1,379 ms
72,576 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
using Int = long long;
const char newl = '\n';


template <typename T, typename F>
struct SegmentTree{
  // using F = function<T(T,T)>;
  Int n;
  F f;
  T ti;
  vector<T> dat;

  SegmentTree(){}
  SegmentTree(F f,T ti):f(f),ti(ti){}

  void init(Int n_){
    n=1;
    while(n<n_) n<<=1;
    dat.assign(n<<1,ti);
  }

  void build(const vector<T> &v){
    Int n_=v.size();
    init(n_);
    for(Int i=0;i<n_;i++) dat[n+i]=v[i];
    for(Int i=n-1;i;i--)
      dat[i]=f(dat[(i<<1)|0],dat[(i<<1)|1]);
  }

  void set_val(Int k,T x){
    dat[k+=n]=x;
    while(k>>=1)
      dat[k]=f(dat[(k<<1)|0],dat[(k<<1)|1]);
  }

  T query(Int a,Int b){
    if(a>=b) return ti;
    T vl=ti,vr=ti;
    for(Int l=a+n,r=b+n;l<r;l>>=1,r>>=1) {
      if(l&1) vl=f(vl,dat[l++]);
      if(r&1) vr=f(dat[--r],vr);
    }
    return f(vl,vr);
  }
};

//INSERT ABOVE HERE
const Int MAX = 3030;
Int dp[MAX][MAX];

signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  Int n,k,m;
  cin>>n>>k>>m;
  vector<Int> as(n);
  for(Int i=0;i<n;i++) cin>>as[i];


  vector<Int> sm(n+1,0);
  for(Int i=0;i<n;i++) sm[i+1]=sm[i]+as[i];

  auto f=[&](Int a,Int b){return max(a,b);};
  SegmentTree seg1(f,0LL);
  SegmentTree seg2(f,0LL);

  seg1.build(vector<Int>(n+1,0));
  seg2.build(vector<Int>(n+1,0));

  // [0, i]
  for(Int i=0;i<m;i++)
    dp[1][i]=abs(sm[i+1]-sm[0]);

  for(Int a=1;a<k;a++){
    seg1.build(vector<Int>(n+1,0));
    seg2.build(vector<Int>(n+1,0));
    for(Int i=0;i<n;i++){
      seg1.set_val(i,dp[a][i]-sm[i+1]);
      seg2.set_val(i,dp[a][i]+sm[i+1]);
    }

    // j in [l, r) , (j, i]
    for(Int i=1;i<n;i++){
      Int l=i-m,r=i;
      chmax(l,0);
      chmax(dp[a+1][i],seg1.query(l,r)+sm[i+1]);
      chmax(dp[a+1][i],seg2.query(l,r)-sm[i+1]);
    }
  }

  cout<<dp[k][n-1]<<endl;
  return 0;
}
0