結果

問題 No.1391 ±1 Abs Sum
ユーザー chineristACchineristAC
提出日時 2020-11-06 21:18:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 104,944 KB
最終ジャッジ日時 2024-07-22 13:35:22
合計ジャッジ時間 5,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,700 KB
testcase_01 AC 39 ms
53,844 KB
testcase_02 AC 37 ms
52,188 KB
testcase_03 AC 37 ms
52,468 KB
testcase_04 AC 38 ms
52,740 KB
testcase_05 AC 38 ms
52,856 KB
testcase_06 AC 38 ms
53,180 KB
testcase_07 AC 38 ms
52,652 KB
testcase_08 AC 39 ms
53,088 KB
testcase_09 AC 38 ms
52,344 KB
testcase_10 AC 39 ms
52,880 KB
testcase_11 AC 113 ms
102,216 KB
testcase_12 AC 95 ms
100,628 KB
testcase_13 AC 101 ms
104,540 KB
testcase_14 AC 99 ms
93,908 KB
testcase_15 AC 102 ms
95,476 KB
testcase_16 AC 116 ms
100,460 KB
testcase_17 AC 109 ms
97,448 KB
testcase_18 AC 110 ms
104,944 KB
testcase_19 AC 93 ms
98,072 KB
testcase_20 AC 109 ms
101,856 KB
testcase_21 AC 93 ms
99,536 KB
testcase_22 AC 92 ms
99,588 KB
testcase_23 AC 97 ms
103,056 KB
testcase_24 AC 96 ms
102,884 KB
testcase_25 AC 96 ms
102,608 KB
testcase_26 AC 95 ms
103,356 KB
testcase_27 AC 86 ms
94,996 KB
testcase_28 AC 89 ms
95,200 KB
testcase_29 AC 98 ms
102,872 KB
testcase_30 AC 93 ms
98,076 KB
testcase_31 AC 111 ms
102,084 KB
testcase_32 AC 81 ms
90,652 KB
testcase_33 AC 87 ms
94,916 KB
testcase_34 AC 102 ms
101,500 KB
testcase_35 AC 38 ms
53,108 KB
testcase_36 AC 108 ms
100,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

assert 1<=N<=2*10**5
assert 0<=K<=N
assert all(abs(A[i])<=10**9 for i in range(N))

if not K:
    tmp1 = -sum(abs(A[i]-A[0]) for i in range(N))
    tmp2 = -sum(abs(A[i]-A[N-1]) for i in range(N))
    exit(print(min(tmp1,tmp2)))

imos = [A[i] for i in range(N)]
for i in range(1,N):
    imos[i] += imos[i-1]

res = 10**18

s = range(N-K+1)
for i in s:
    first = (N-K-i) - i - K
    last = (N-K-i) - i + K - 2

    if first>=0:
        mid = i
    elif last<=0:
        mid = i + K -1
    else:
        mid = K + 2*i - ((N+1)//2)

    tmp = imos[i-1] * (i>0) - A[mid] * i
    tmp += A[mid] * (mid - i + 1) - imos[mid] + imos[i-1] * (i>0)
    tmp += imos[i+K-1] - imos[mid] - A[mid] * (i + K - 1 - mid)
    tmp += A[mid] * (N-i-K) - imos[N-1] + imos[i+K-1]

    res = min(res,tmp)

print(res)
0