結果

問題 No.1391 ±1 Abs Sum
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-13 10:14:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,244 KB
最終ジャッジ日時 2024-07-20 12:52:25
合計ジャッジ時間 6,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
51,968 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 128 ms
108,244 KB
testcase_12 AC 111 ms
104,192 KB
testcase_13 AC 110 ms
105,472 KB
testcase_14 AC 86 ms
93,440 KB
testcase_15 AC 88 ms
96,000 KB
testcase_16 AC 97 ms
101,248 KB
testcase_17 AC 94 ms
98,816 KB
testcase_18 AC 102 ms
105,088 KB
testcase_19 AC 101 ms
100,992 KB
testcase_20 AC 121 ms
106,564 KB
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 120 ms
106,972 KB
testcase_32 AC 68 ms
85,248 KB
testcase_33 AC 74 ms
90,624 KB
testcase_34 RE -
testcase_35 AC 39 ms
51,840 KB
testcase_36 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
inf=float('inf')
ans=inf
# 右端に-1を固める
tmp0=0
tmp1=0
for x in a:
  if a[k]-x>0:
    tmp1+=a[k]-x
  else:
    tmp0+=x-a[k]
ans=min(ans,tmp1-tmp0)
for i in reversed(range(k)):
  tmp0+=(n-k)*(a[i+1]-a[i])
  tmp1-=(i+1)*(a[i+1]-a[i])
  tmp1+=(k-i-1)*(a[i+1]-a[i])
  ans=min(ans,tmp1-tmp0)

# 左端に-1を固める。
a=[-x for x in a]
a.reverse()
tmp0=0
tmp1=0
for x in a:
  if a[k]-x>0:
    tmp1+=a[k]-x
  else:
    tmp0+=x-a[k]
ans=min(ans,tmp1-tmp0)
for i in reversed(range(k)):
  tmp0+=(n-k)*(a[i+1]-a[i])
  tmp1-=(i+1)*(a[i+1]-a[i])
  tmp1+=(k-i-1)*(a[i+1]-a[i])
  ans=min(ans,tmp1-tmp0)

print(ans)
0