結果

問題 No.1391 ±1 Abs Sum
ユーザー Kiri8128Kiri8128
提出日時 2021-02-12 22:01:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 258,748 KB
最終ジャッジ日時 2024-07-19 21:31:00
合計ジャッジ時間 15,849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 47 ms
58,624 KB
testcase_09 AC 45 ms
58,880 KB
testcase_10 AC 46 ms
58,368 KB
testcase_11 AC 455 ms
258,072 KB
testcase_12 AC 408 ms
257,804 KB
testcase_13 AC 485 ms
258,112 KB
testcase_14 AC 317 ms
234,620 KB
testcase_15 AC 323 ms
257,364 KB
testcase_16 AC 470 ms
256,936 KB
testcase_17 AC 346 ms
257,212 KB
testcase_18 AC 438 ms
258,272 KB
testcase_19 AC 398 ms
257,848 KB
testcase_20 WA -
testcase_21 AC 738 ms
258,068 KB
testcase_22 WA -
testcase_23 AC 993 ms
257,104 KB
testcase_24 AC 862 ms
256,920 KB
testcase_25 AC 783 ms
258,700 KB
testcase_26 AC 813 ms
258,104 KB
testcase_27 AC 582 ms
257,276 KB
testcase_28 AC 653 ms
254,132 KB
testcase_29 AC 742 ms
258,436 KB
testcase_30 AC 621 ms
257,720 KB
testcase_31 AC 535 ms
257,944 KB
testcase_32 AC 299 ms
256,896 KB
testcase_33 AC 359 ms
256,896 KB
testcase_34 AC 551 ms
258,660 KB
testcase_35 AC 35 ms
52,096 KB
testcase_36 AC 424 ms
258,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(k):
    b = A[k]
    L = sorted([abs(a - b) for a in A])
    return sum(L[:K]) - sum(L[K:])

N, K = map(int, input().split())
A = [int(a) for a in input().split()]
l, r = 0, N - 1
fl, fr = f(l), f(r)
ans = min(fl, fr)
while r - l > 3:
    m1 = (l * 3 + r) // 4
    m2 = (l + r * 3) // 4
    fm1, fm2 = f(m1), f(m2)
    if fm1 < fm2:
        r = m2
        ans = min(ans, fm1)
    else:
        l = m1
        ans = min(ans, fm2)
if r - l > 1:
    for i in range(l + 1, r):
        ans = min(ans, f(i))
print(ans)
0