結果

問題 No.1391 ±1 Abs Sum
ユーザー so4649so4649
提出日時 2021-02-12 22:11:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 707 bytes
コンパイル時間 799 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 110,036 KB
最終ジャッジ日時 2024-07-19 22:10:08
合計ジャッジ時間 4,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 131 ms
109,968 KB
testcase_12 AC 107 ms
105,344 KB
testcase_13 AC 118 ms
109,696 KB
testcase_14 AC 87 ms
95,344 KB
testcase_15 AC 90 ms
97,400 KB
testcase_16 AC 100 ms
104,320 KB
testcase_17 AC 94 ms
100,472 KB
testcase_18 AC 109 ms
108,920 KB
testcase_19 AC 106 ms
101,376 KB
testcase_20 AC 133 ms
109,140 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 124 ms
110,036 KB
testcase_32 AC 83 ms
95,360 KB
testcase_33 AC 86 ms
100,352 KB
testcase_34 AC 127 ms
107,424 KB
testcase_35 AC 38 ms
52,480 KB
testcase_36 AC 122 ms
108,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = list(map(int,input().split()))

k = n-k

ans = 10**15

b = [1]*(n-k)+[-1]*k
ruiseki = [0]*(n+1)
for i in range(n):
    ruiseki[i+1] = ruiseki[i]+b[i]
base = 0
while base+1 < n and ruiseki[base+1] < (n-2*k+1)//2:
    base += 1
left = sum(abs(a[i]-a[base]) for i in range(n-k))+sum(-abs(a[base]-a[i]) for i in range(n-k,n))
# print(base,left)

b = [-1]*k+[1]*(n-k)
ruiseki = [0]*(n+1)
for i in range(n):
    ruiseki[i+1] = ruiseki[i]+b[i]
base = n-1
while 0 < base and ruiseki[n]-ruiseki[base] < (n-2*k+1)//2:
    base -= 1
right = sum(-abs(a[i]-a[base]) for i in range(k))+sum(abs(a[base]-a[i]) for i in range(k,n))
# print(base,right)

ans = min(ans,left,right)
print(ans)
0