結果
問題 | No.1391 ±1 Abs Sum |
ユーザー | titia |
提出日時 | 2023-05-22 07:58:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 781 bytes |
コンパイル時間 | 464 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 114,300 KB |
最終ジャッジ日時 | 2024-06-01 17:13:56 |
合計ジャッジ時間 | 9,955 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
51,712 KB |
testcase_01 | AC | 39 ms
52,352 KB |
testcase_02 | AC | 39 ms
52,224 KB |
testcase_03 | AC | 43 ms
51,876 KB |
testcase_04 | WA | - |
testcase_05 | AC | 40 ms
52,124 KB |
testcase_06 | WA | - |
testcase_07 | AC | 39 ms
52,352 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 238 ms
99,192 KB |
testcase_15 | WA | - |
testcase_16 | AC | 284 ms
108,244 KB |
testcase_17 | WA | - |
testcase_18 | AC | 327 ms
102,688 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 | 365 ms
113,792 KB |
testcase_32 | AC | 175 ms
95,904 KB |
testcase_33 | AC | 186 ms
101,120 KB |
testcase_34 | AC | 122 ms
111,004 KB |
testcase_35 | AC | 39 ms
53,648 KB |
testcase_36 | AC | 121 ms
112,932 KB |
ソースコード
import sys input = sys.stdin.readline N,K=map(int,input().split()) A=list(map(int,input().split())) S=[0] for a in A: S.append(S[-1]+a) plus=K minus=N-K def calc(i,j): a=A[i] ANS=S[i+1]-a*(i+1) ANS+=a*(N-i-1)-(S[-1]-S[i+1]) if j+K-1<=i: ANS+=2*(a*K-S[j+K]-S[j]) elif j>=i: ANS+=2*(S[j+K]-S[j]-a*K) else: ANS+=2*(a*(i-j)-S[i]-S[j]) ANS+=2*(S[j+K]-S[i]-a*(j+K-i)) return ANS LANS=1<<100 for i in range(N): MIN=0 MAX=N-K while MAX>MIN+5: mid1=MIN+(MAX-MIN)//3 mid2=MIN+(MAX-MIN)//3*2 if calc(i,mid1)<calc(i,mid2): MAX=mid2 else: MIN=mid1 for j in range(MIN,MAX+1): LANS=min(LANS,calc(i,j)) print(LANS)