結果

問題 No.1391 ±1 Abs Sum
ユーザー H3PO4H3PO4
提出日時 2021-02-12 22:15:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,144 KB
最終ジャッジ日時 2024-07-19 22:21:17
合計ジャッジ時間 11,897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 517 ms
32,676 KB
testcase_12 AC 374 ms
27,256 KB
testcase_13 AC 460 ms
31,392 KB
testcase_14 AC 355 ms
23,140 KB
testcase_15 AC 363 ms
23,604 KB
testcase_16 AC 459 ms
27,200 KB
testcase_17 AC 407 ms
25,160 KB
testcase_18 AC 528 ms
30,216 KB
testcase_19 AC 325 ms
25,280 KB
testcase_20 AC 497 ms
32,212 KB
testcase_21 AC 340 ms
26,752 KB
testcase_22 AC 338 ms
26,724 KB
testcase_23 AC 388 ms
29,704 KB
testcase_24 AC 356 ms
26,688 KB
testcase_25 AC 360 ms
29,484 KB
testcase_26 AC 383 ms
29,248 KB
testcase_27 AC 266 ms
23,104 KB
testcase_28 AC 269 ms
22,464 KB
testcase_29 AC 348 ms
26,340 KB
testcase_30 AC 305 ms
24,964 KB
testcase_31 AC 534 ms
33,052 KB
testcase_32 AC 323 ms
21,764 KB
testcase_33 AC 357 ms
23,732 KB
testcase_34 AC 353 ms
31,552 KB
testcase_35 AC 31 ms
10,496 KB
testcase_36 AC 358 ms
33,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = tuple(map(int, input().split()))

l, r = 0, K
A0 = A[0]
plus, minus = sum(a - A0 for a in A[:K]), sum(a - A0 for a in A[K:])
ans = plus - minus
for i in range(1, N):
    x = A[i]
    diff = A[i] - A[i - 1]
    plus += diff * (2 * i - l - r)
    minus += diff * (l + r - N)
    while r < N and (arx := (A[r] - x)) < (alx := (x - A[l])):
        plus += arx - alx
        minus += alx - arx
        r += 1
        l += 1
    ans = min(plus - minus, ans)
print(ans)
0