結果
問題 | No.1117 数列分割 |
ユーザー | ok |
提出日時 | 2020-07-18 09:39:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,404 bytes |
コンパイル時間 | 1,466 ms |
コンパイル使用メモリ | 96,372 KB |
実行使用メモリ | 73,856 KB |
最終ジャッジ日時 | 2024-05-07 23:29:40 |
合計ジャッジ時間 | 5,050 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 11 ms
5,888 KB |
testcase_28 | AC | 11 ms
5,888 KB |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> #include<utility> #include<queue> 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; signed main(){ cout<<fixed<<setprecision(10); int N, K, M; vector<int> A; vector<int> sum; vector<vector<int>> dp; vector<pair<int,int>> q, q2; cin>>N>>K>>M; A.resize(N); dp.resize(N+1, vector<int>(K+1, -INF)); sum.resize(N+1); q.resize(N+2); q2.resize(N+2); for(int i = 0; i < N; i++){ cin>>A[i]; sum[i+1] = sum[i] + A[i]; if(i < M) dp[i][1] = abs(sum[i+1]); } for(int j = 2; j <= K; j++){ int f = 0, e = 0; int f2 = 0, e2 = 0; for(int i = j-1; i < N; i++){ int num = dp[i-1][j-1] - sum[i]; int num2 = dp[i-1][j-1] + sum[i]; while(e - f && q[e].second < num) e--; q[e+1] = {i,num}; e++; while(e - f && q[f].first < i - M + 1) f++; while(e2 - f2 && q2[e2].second < num2) e2--; q2[e2+1] = {i,num2}; e2++; while(e2 - f2 && q2[f2].first < i - M + 1) f2++; if(e - f) dp[i][j] = max(q[f].second + sum[i+1],dp[i][j]); if(e2 - f2) dp[i][j] = max(dp[i][j], q2[f2].second - sum[i+1]); } } cout<<dp[N-1][K]<<endl; return 0; }