結果
問題 | No.1391 ±1 Abs Sum |
ユーザー | publfl |
提出日時 | 2021-02-12 22:28:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,201 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 32,896 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 23:02:25 |
合計ジャッジ時間 | 2,307 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 34 ms
5,376 KB |
testcase_12 | AC | 26 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 21 ms
5,376 KB |
testcase_15 | AC | 21 ms
5,376 KB |
testcase_16 | AC | 27 ms
5,376 KB |
testcase_17 | AC | 23 ms
5,376 KB |
testcase_18 | AC | 31 ms
5,376 KB |
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 | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 34 ms
5,376 KB |
testcase_32 | AC | 19 ms
5,376 KB |
testcase_33 | AC | 21 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 32 ms
5,376 KB |
ソースコード
#include <stdio.h> int x[200010]; long long int sum[200010]; int a; int L,R; long long int func(int p, int s, int t) { long long int ans = 0; if(p<s) { ans += sum[p]; ans -= (sum[s-1]-sum[p]); ans += (sum[t]-sum[s-1]); ans -= (sum[a]-sum[t]); ans += (long long int)(-(p)+(s-1-p)-(t-s+1)+(a-t))*x[p]; } else if(s<=p&&p<=t) { ans += sum[s-1]; ans -= (sum[p]-sum[s-1]); ans += (sum[t]-sum[p]); ans -= (sum[a]-sum[t]); ans += (long long int)(-(s-1)+(p-s+1)-(t-p)+(a-t))*x[p]; } else { ans += sum[s-1]; ans -= (sum[t]-sum[s-1]); ans += (sum[p]-sum[t]); ans -= (sum[a]-sum[p]); ans += (long long int)(-(s-1)+(t-s+1)-(p-t)+(a-p))*x[p]; } return ans; } int main() { int b; scanf("%d%d",&a,&b); for(int i=1;i<=a;i++) scanf("%d",&x[i]); for(int i=1;i<=a;i++) sum[i] += (sum[i-1] + x[i]); long long int ans = 1; for(int i=1;i<=16;i++) ans*=10; int p = 1; b = a-b; for(int i=0;i<=b;i++) { L = i+1; R = a-(b-i); while(p+1<=a&&func(p+1,L,R)<func(p,L,R)) p++; while(p-1>=1&&func(p-1,L,R)<func(p,L,R)) p--; ans = ans<func(p,L,R)?ans:func(p,L,R); ans = ans<func(1,L,R)?ans:func(1,L,R); ans = ans<func(a,L,R)?ans:func(a,L,R); } printf("%lld\n",ans); }