結果
問題 | No.1117 数列分割 |
ユーザー | tokusakurai |
提出日時 | 2020-07-18 10:53:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,630 bytes |
コンパイル時間 | 1,943 ms |
コンパイル使用メモリ | 210,560 KB |
実行使用メモリ | 419,528 KB |
最終ジャッジ日時 | 2024-05-07 23:39:40 |
合計ジャッジ時間 | 31,016 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 114 ms
30,384 KB |
testcase_04 | AC | 96 ms
27,376 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 79 ms
30,784 KB |
testcase_09 | AC | 16 ms
10,240 KB |
testcase_10 | AC | 81 ms
30,300 KB |
testcase_11 | AC | 594 ms
129,128 KB |
testcase_12 | AC | 672 ms
144,128 KB |
testcase_13 | AC | 937 ms
147,360 KB |
testcase_14 | AC | 1,057 ms
190,832 KB |
testcase_15 | AC | 1,341 ms
249,976 KB |
testcase_16 | AC | 1,508 ms
241,528 KB |
testcase_17 | AC | 66 ms
27,648 KB |
testcase_18 | TLE | - |
testcase_19 | MLE | - |
testcase_20 | AC | 1,255 ms
203,452 KB |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 65 ms
12,544 KB |
testcase_28 | AC | 63 ms
11,648 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0; i < n; i++) #define rep2(i, x, n) for(int i = x; i <= n; i++) #define rep3(i, x, n) for(int i = x; i >= n; i--) #define elif else if #define sp(x) fixed << setprecision(x) #define pb push_back #define eb emplace_back #define all(x) x.begin(), x.end() #define sz(x) (int)x.size() using ll = long long; using ld = long double; using pii = pair<int, int>; using pil = pair<int, ll>; using pli = pair<ll, int>; using pll = pair<ll, ll>; const ll MOD = 1e9+7; //const ll MOD = 998244353; const int inf = (1<<30)-1; const ll INF = (1LL<<60)-1; const ld EPS = 1e-10; template<typename T> bool chmax(T &x, const T &y) {return (x < y)? (x = y, true) : false;}; template<typename T> bool chmin(T &x, const T &y) {return (x > y)? (x = y, true) : false;}; int main(){ int N, K, M; cin >> N >> K >> M; vector<ll> A(N); rep(i, N) cin >> A[i]; ll dp[N+1][K+1]; fill(dp[0], dp[N+1], -INF); dp[0][0] = 0; priority_queue<pli> que[K+1][2]; rep(i, K+1) rep(j, 2) que[i][j].push(pli(dp[i][0], 0)); ll sum[2]; sum[0] = sum[1] = 0; rep(i, N){ sum[0] += A[i], sum[1] -= A[i]; rep2(j, 1, K){ rep(k, 2){ while(!que[j-1][k].empty()){ if(que[j-1][k].top().second <= i-M) que[j-1][k].pop(); else break; } chmax(dp[i+1][j], que[j-1][k].top().first+sum[k]); } } rep(j, K+1){ rep(k, 2) que[j][k].push(pli(dp[i+1][j]-sum[k], i+1)); } } cout << dp[N][K] << endl; }