結果
問題 | No.1117 数列分割 |
ユーザー | ok |
提出日時 | 2020-07-18 00:15:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,588 bytes |
コンパイル時間 | 1,694 ms |
コンパイル使用メモリ | 101,416 KB |
実行使用メモリ | 37,760 KB |
最終ジャッジ日時 | 2024-05-07 12:50:04 |
合計ジャッジ時間 | 19,637 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> #include<utility> using namespace std; #define int long long #define endl "\n" constexpr long long INF = (long long)1e18; constexpr long long MOD = 1'000'000'007; // struct fast_io { // fast_io(){ // std::cin.tie(nullptr); // std::ios::sync_with_stdio(false); // }; // } fio; template<typename T> class lazy_segment_tree{ int n; T fval; vector<T> dat, lazy; public: lazy_segment_tree(){ } lazy_segment_tree(int n_, T val){ init(n_, val); } ~lazy_segment_tree(){ } void init(int n_, T val){ fval = val; n = 1; while(n < n_) n *= 2; dat.resize(2 * n - 1); lazy.resize(2 * n - 1, fval); for(int i = 0; i < 2 * n - 1; i++) dat[i] = fval; } void eval(int k, int l, int r){ if(lazy[k] != fval){ dat[k] = dat[k] + lazy[k]/(r - l); if(r - l > 1) { lazy[2*k+1] = lazy[2*k+1] + lazy[k]/2; lazy[2*k+2] = lazy[2*k+2] + lazy[k]/2; } lazy[k] = 0; } } void update(int a, int b, T x, int k = 0, int l = 0, int r = -1){ if(r < 0) r = n; eval(k, l, r); if(b <= l || r <= a) {return ;} if(a <= l && r <= b){ lazy[k] = lazy[k] + (r - l) * x; eval(k, l, r); } else { update(a, b, x, 2*k+1, l, (l+r)/2); update(a, b, x, 2*k+2, (l+r)/2, r); dat[k] = max(dat[2*k+1], dat[2*k+2]); } } T query(int a, int b, int k = 0, int l = 0, int r = -1){ if(r < 0) r = n; eval(k, l, r); if(r <= a || b <= l){ return -INF; } if(a <= l && r <= b){ return dat[k]; }else { T vl = query(a, b, k * 2 + 1, l, (l + r) / 2 ); T vr = query(a, b, k * 2 + 2, (l + r) / 2, r); return max(vl, vr); } } }; signed main(){ cout<<fixed<<setprecision(10); int N, K, M; vector<int> A; vector<int> sum; vector<vector<int>> dp; cin>>N>>K>>M; A.resize(N); dp.resize(N+1, vector<int>(K+1, -INF)); sum.resize(N+1); for(int i = 0; i < N; i++){ cout<<i<<endl; cin>>A[i]; sum[i+1] = sum[i] + A[i]; if(i < M) dp[i][1] = abs(sum[i+1]); cout<<"i = "<<i<<" "<<dp[i][1]<<endl; } for(int j = 2; j <= K; j++){ lazy_segment_tree<int> lseg, lseg2; lseg.init(N+2, 0); lseg2.init(N+2, 0); for(int i = 0; i < N; i++){ lseg.update(i, i+1, dp[i][j-1]); lseg2.update(i, i+1, dp[i][j-1]); } for(int i = j-1; i < N; i++){ lseg.update(j-2, i, A[i]); lseg2.update(j-2, i, -A[i]); dp[i][j] = max(-INF, max(lseg.query(max(j-2, i - M), i), lseg2.query(max(j-2, i - M), i))); } } cout<<dp[N-1][K]<<endl; return 0; }