結果

問題 No.1391 ±1 Abs Sum
ユーザー shotoyooshotoyoo
提出日時 2021-02-12 22:07:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 127,120 KB
最終ジャッジ日時 2024-07-19 21:54:56
合計ジャッジ時間 4,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 144 ms
127,120 KB
testcase_12 AC 122 ms
111,360 KB
testcase_13 AC 134 ms
104,448 KB
testcase_14 AC 106 ms
104,000 KB
testcase_15 AC 107 ms
106,736 KB
testcase_16 AC 114 ms
112,832 KB
testcase_17 AC 114 ms
109,692 KB
testcase_18 AC 108 ms
104,576 KB
testcase_19 AC 126 ms
118,656 KB
testcase_20 AC 146 ms
124,996 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 118 ms
115,072 KB
testcase_24 AC 118 ms
115,328 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 124 ms
117,376 KB
testcase_28 WA -
testcase_29 AC 109 ms
113,152 KB
testcase_30 WA -
testcase_31 AC 131 ms
118,300 KB
testcase_32 AC 91 ms
100,096 KB
testcase_33 AC 98 ms
106,880 KB
testcase_34 AC 107 ms
110,320 KB
testcase_35 AC 41 ms
52,096 KB
testcase_36 AC 116 ms
112,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")

n,k = list(map(int, input().split()))
a = list(map(int, input().split()))
cum = [0]
v = 0
for i in range(n):
    v += a[i]
    cum.append(v)
l = 0
ans = float("inf")
for i in range(n):
    x = a[i]
    while l<i and l<n-k and x - a[l] > a[k+l-1] - x:
        l += 1
    val = cum[l] - (cum[i] - cum[l]) + (cum[k+l] - cum[i]) - (cum[n] - cum[k+l])
    ans = min(ans, val + x * (n - 2*k - 4*l + 2*i))
#     print(i,l,val,x * (n - 2*k - 4*l + 2*i))
print(ans)
0