結果
問題 | No.1117 数列分割 |
ユーザー | Drice |
提出日時 | 2020-07-18 03:27:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,193 bytes |
コンパイル時間 | 373 ms |
コンパイル使用メモリ | 34,816 KB |
実行使用メモリ | 168,192 KB |
最終ジャッジ日時 | 2024-05-07 22:49:11 |
合計ジャッジ時間 | 4,153 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
97,536 KB |
testcase_01 | AC | 28 ms
97,664 KB |
testcase_02 | AC | 28 ms
97,536 KB |
testcase_03 | AC | 40 ms
107,008 KB |
testcase_04 | AC | 39 ms
106,496 KB |
testcase_05 | AC | 28 ms
97,664 KB |
testcase_06 | AC | 29 ms
98,048 KB |
testcase_07 | AC | 28 ms
98,304 KB |
testcase_08 | AC | 39 ms
106,752 KB |
testcase_09 | AC | 34 ms
101,888 KB |
testcase_10 | AC | 40 ms
107,520 KB |
testcase_11 | AC | 64 ms
124,800 KB |
testcase_12 | AC | 64 ms
125,568 KB |
testcase_13 | AC | 72 ms
132,736 KB |
testcase_14 | AC | 85 ms
136,448 KB |
testcase_15 | AC | 94 ms
141,952 KB |
testcase_16 | AC | 107 ms
149,760 KB |
testcase_17 | AC | 49 ms
113,536 KB |
testcase_18 | AC | 212 ms
168,064 KB |
testcase_19 | AC | 203 ms
168,088 KB |
testcase_20 | AC | 90 ms
143,616 KB |
testcase_21 | AC | 194 ms
168,004 KB |
testcase_22 | AC | 175 ms
168,076 KB |
testcase_23 | AC | 181 ms
168,176 KB |
testcase_24 | AC | 173 ms
168,192 KB |
testcase_25 | AC | 178 ms
168,148 KB |
testcase_26 | AC | 28 ms
97,536 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
#include<cstdio> //abs part can be fixed... long long a[3005]; long long sum[3005]; long long f[3005][3005]; struct Element{ int p; long value; Element(int p=0,long long value=0):p(p),value(value){} }; Element queue[3005][1005][2]; int h[3005][2], t[3005][2]; long long abs(long long u){ return u>0?u:-u; } long long max(long long a,long long b){ return a>b?a:b; } int main(){ int n,m,k; scanf("%d%d%d",&n,&k,&m); sum[0] = 0; for(int i = 1; i <= n; i++){ scanf("%lld",&a[i]); sum[i] = sum[i-1]+a[i]; } long long inf = 1e15+7; for(int i = 0; i <= k; i++){ f[0][i] = -inf; h[i][0] = h[i][1] = 0; t[i][0] = t[i][1] = -1; } f[0][0] = 0; queue[0][++t[0][0]][0] = Element(0,0); queue[0][++t[0][1]][1] = Element(0,0); for(int i = 1; i <= n; i++){ f[i][0] = -inf; for(int j = 1; j <= k; j++){ f[i][j] = -inf; /*for(int last = max(0,i-m); last <= i-1; last++){ //f[i][j] = max(f[i][j],f[last][j-1]+abs(sum[i]-sum[last])); //f[i][j] = max(f[i][j],f[last][j-1]+sum[i]-sum[last]); //f[i][j] = max(f[i][j],f[last][j-1]-sum[i]+sum[last]); }*/ while(h[j-1][0]<=t[j-1][0] && queue[j-1][h[j-1][0]][0].p<i-m) h[j-1][0]++; while(h[j-1][1]<=t[j-1][1] && queue[j-1][h[j-1][1]][1].p<i-m) h[j-1][1]++; long long res0 = -inf, res1 = -inf; if(h[j-1][0]<=t[j-1][0]) res0 = queue[j-1][h[j-1][0]][0].value+sum[i]; if(h[j-1][1]<=t[j-1][1]) res1 = queue[j-1][h[j-1][1]][1].value-sum[i]; f[i][j] = max(res0,res1); //printf("f[%d][%d] = %lld\n",i,j,f[i][j]); //update } for(int j = 1; j <= k; j++){ long long value = f[i][j]-sum[i]; while(t[j][0]>=0 && value>=queue[j][t[j][0]][0].value) t[j][0]--; queue[j][++t[j][0]][0] = Element(i,value); value = f[i][j]+sum[i]; while(t[j][1]>=0 && value>=queue[j][t[j][1]][1].value) t[j][1]--; queue[j][++t[j][1]][1] = Element(i,value); } } printf("%lld\n",f[n][k]); return 0; }