結果
問題 | No.1117 数列分割 |
ユーザー | ok |
提出日時 | 2020-07-18 18:00:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 996 bytes |
コンパイル時間 | 233 ms |
コンパイル使用メモリ | 39,680 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 01:04:50 |
合計ジャッジ時間 | 1,479 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 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 | WA | - |
testcase_28 | WA | - |
ソースコード
#include<stdio.h> #include<math.h> #define int long long #define MAX 3100 int dp[MAX][2]; int sum[MAX]; static int qf[MAX], q2f[MAX]; static int qs[MAX], q2s[MAX]; signed main(){ int N, K, M, A; scanf("%d %d %d", &N, &K, &M); sum[0] = 0; for(int i = 0; i < N; i++){ scanf("%d", &A); sum[i+1] = sum[i] + A; if(i < M) dp[i][1] = abs(sum[i+1]); } for(int j = 2, k = 0; j <= K; j++, k = !k){ int f = 0, e = 0, f2 = 0, e2 = 0; for(int i = j-1; i < N; i++){ int num = dp[i-1][!k] - sum[i]; int num2 = dp[i-1][!k] + sum[i]; while(e - f && qs[e-1] < num) e--; qf[e] = i; qs[e] = num; e++; while(e - f && qf[f] < i - M + 1) f++; while(e2 - f2 && q2s[e2-1] < num2) e2--; q2f[e2] = i; q2s[e2] = num2; e2++; while(e2 - f2 && q2f[f2] < i - M + 1) f2++; if(qs[f] + sum[i+1] > q2s[f2] - sum[i+1]) dp[i][k] = qs[f] + sum[i+1]; else dp[i][k] = q2s[f2] - sum[i+1]; } } printf("%lld", dp[N-1][K%2]); return 0; }