結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 39 ms
52,564 KB
testcase_05 WA -
testcase_06 AC 39 ms
51,712 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 91 ms
95,532 KB
testcase_15 AC 94 ms
97,860 KB
testcase_16 AC 101 ms
104,320 KB
testcase_17 AC 98 ms
100,352 KB
testcase_18 AC 111 ms
109,012 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 127 ms
109,604 KB
testcase_32 AC 80 ms
93,696 KB
testcase_33 AC 91 ms
100,480 KB
testcase_34 WA -
testcase_35 AC 40 ms
52,096 KB
testcase_36 AC 127 ms
108,784 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(a[i]-a[base] for i in range(n-k))+sum(a[base]-a[i] for i in range(n-k,n))

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(a[i]-a[base] for i in range(k))+sum(a[base]-a[i] for i in range(k,n))

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