結果

問題 No.1391 ±1 Abs Sum
ユーザー convexineqconvexineq
提出日時 2021-02-13 14:26:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 122,012 KB
最終ジャッジ日時 2024-07-20 17:12:52
合計ジャッジ時間 6,004 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 43 ms
52,096 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 175 ms
122,012 KB
testcase_12 AC 145 ms
106,496 KB
testcase_13 AC 174 ms
117,688 KB
testcase_14 AC 143 ms
96,640 KB
testcase_15 AC 164 ms
101,652 KB
testcase_16 AC 146 ms
105,856 KB
testcase_17 AC 141 ms
102,016 KB
testcase_18 AC 150 ms
104,160 KB
testcase_19 AC 185 ms
112,496 KB
testcase_20 AC 172 ms
119,068 KB
testcase_21 AC 134 ms
105,216 KB
testcase_22 AC 135 ms
105,216 KB
testcase_23 AC 147 ms
110,208 KB
testcase_24 AC 130 ms
109,184 KB
testcase_25 AC 144 ms
109,056 KB
testcase_26 AC 144 ms
109,440 KB
testcase_27 AC 148 ms
105,600 KB
testcase_28 AC 161 ms
105,984 KB
testcase_29 AC 136 ms
109,056 KB
testcase_30 AC 140 ms
101,888 KB
testcase_31 AC 156 ms
112,544 KB
testcase_32 AC 101 ms
94,464 KB
testcase_33 AC 107 ms
99,456 KB
testcase_34 AC 130 ms
106,020 KB
testcase_35 AC 40 ms
51,840 KB
testcase_36 AC 129 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(L,R,x):
    return -g(0,n,x) + 2*g(L,R,x)

def g(i,j,x):
    return h(i,x)*(1 if i <= x else -1) + h(j,x)*(-1 if j <= x else 1)

def h(j,x):
    return a[x]*(x-j) - (s[j]-s[x])

n,k = map(int,input().split())
*a, = map(int,input().split())

s = a + [0]
for i in range(n)[::-1]:
    s[i] += s[i+1]

L = 0
ans = 1<<60
for i in range(n):
    while L+k < n and a[i]-a[L] > a[L+k]-a[i]:
        L += 1
    v = f(L,L+k,i)
    ans = min(v,ans)
print(ans)
0