結果

問題 No.1391 ±1 Abs Sum
ユーザー KudeKude
提出日時 2021-02-12 21:58:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,928 KB
最終ジャッジ日時 2024-07-19 21:17:30
合計ジャッジ時間 4,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 42 ms
51,712 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 42 ms
52,480 KB
testcase_11 AC 143 ms
107,104 KB
testcase_12 AC 123 ms
101,632 KB
testcase_13 AC 135 ms
105,088 KB
testcase_14 AC 106 ms
93,312 KB
testcase_15 AC 110 ms
95,616 KB
testcase_16 AC 116 ms
101,632 KB
testcase_17 AC 107 ms
98,560 KB
testcase_18 AC 118 ms
104,832 KB
testcase_19 AC 110 ms
98,176 KB
testcase_20 AC 142 ms
106,552 KB
testcase_21 AC 110 ms
100,992 KB
testcase_22 AC 112 ms
100,864 KB
testcase_23 AC 113 ms
104,448 KB
testcase_24 AC 108 ms
103,936 KB
testcase_25 AC 114 ms
103,936 KB
testcase_26 AC 115 ms
104,320 KB
testcase_27 AC 103 ms
99,456 KB
testcase_28 AC 111 ms
99,968 KB
testcase_29 AC 116 ms
103,552 KB
testcase_30 AC 111 ms
103,168 KB
testcase_31 AC 129 ms
103,652 KB
testcase_32 AC 83 ms
89,344 KB
testcase_33 AC 85 ms
93,952 KB
testcase_34 AC 108 ms
108,928 KB
testcase_35 AC 39 ms
51,712 KB
testcase_36 AC 114 ms
100,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
k = n - k
a = list(map(int, input().split()))
now = sum(x - a[0] for x in a[:n - k]) - sum(x - a[0] for x in a[n - k: n])
ans = now
l = 0
r = n - k
for i in range(1, n):
    x = a[i]
    now += (a[i] - a[i-1]) * (-l + i-l - (r-i) + n-r)
    while l < i and r < n and x - a[l] > a[r] - x:
        now += -2 * (x - a[l]) + 2 * (a[r] - x)
        l += 1
        r += 1
    ans = min(ans, now)
print(ans)
0