結果
問題 | No.1117 数列分割 |
ユーザー | leaf_1415 |
提出日時 | 2020-07-19 01:39:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,011 bytes |
コンパイル時間 | 1,337 ms |
コンパイル使用メモリ | 94,320 KB |
実行使用メモリ | 387,712 KB |
最終ジャッジ日時 | 2024-05-08 17:06:49 |
合計ジャッジ時間 | 26,292 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 250 ms
91,008 KB |
testcase_04 | AC | 235 ms
80,640 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 15 ms
16,256 KB |
testcase_07 | AC | 9 ms
9,984 KB |
testcase_08 | AC | 167 ms
57,088 KB |
testcase_09 | AC | 63 ms
26,624 KB |
testcase_10 | AC | 155 ms
52,736 KB |
testcase_11 | AC | 621 ms
136,832 KB |
testcase_12 | AC | 895 ms
157,696 KB |
testcase_13 | AC | 970 ms
235,776 KB |
testcase_14 | AC | 1,030 ms
192,384 KB |
testcase_15 | MLE | - |
testcase_16 | AC | 1,736 ms
223,872 KB |
testcase_17 | AC | 135 ms
25,472 KB |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | AC | 1,321 ms
188,160 KB |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 91 ms
16,384 KB |
testcase_28 | AC | 91 ms
16,384 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #define llint long long #define inf 1e18 #define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++) #define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) #define mod 998244353 using namespace std; typedef pair<llint, llint> P; struct SegTree{ int size; vector<llint> seg; SegTree(){} SegTree(int size){ this->size = size; seg.resize(1<<(size+1)); } void init() { for(int i = 0; i < (1<<(size+1)); i++) seg[i] = -inf; } void update(int i, llint val) { i += (1 << size); seg[i] = val; while(i > 1){ i /= 2; seg[i] = max(seg[i*2], seg[i*2+1]); } } llint query(int a, int b, int k, int l, int r) { if(b < l || r < a) return -inf; if(a <= l && r <= b) return seg[k]; llint lval = query(a, b, k*2, l, (l+r)/2); llint rval = query(a, b, k*2+1, (l+r)/2+1, r); return max(lval, rval); } llint query(int a, int b) { return query(a, b, 1, 0, (1<<size)-1); } }; llint n, k, m; SegTree seg[3005], seg2[3005]; llint a[3005], sum[3005]; int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> k >> m; for(int i = 1; i <= n; i++) cin >> a[i]; for(int i = 1; i <= n; i++) sum[i] = sum[i-1] + a[i]; for(int i = 0; i <= k; i++){ seg[i] = SegTree(12), seg[i].init(); seg2[i] = SegTree(12), seg2[i].init(); } seg[0].update(0, 0), seg2[0].update(0, 0); for(int i = 1; i <= k; i++){ for(int j = 1; j <= n; j++){ llint tmp = max(sum[j]+seg[i-1].query(max(0LL, j-m), j-1), -sum[j]+seg2[i-1].query(max(0LL, j-m), j-1)); seg[i].update(j, tmp-sum[j]); seg2[i].update(j, tmp+sum[j]); } } cout << seg[k].query(n, n) + sum[n] << endl; return 0; }