結果

問題 No.1391 ±1 Abs Sum
ユーザー Kiri8128Kiri8128
提出日時 2021-02-12 22:07:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 977 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 265,128 KB
最終ジャッジ日時 2024-07-19 21:55:30
合計ジャッジ時間 24,549 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,204 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 39 ms
52,212 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 54 ms
61,440 KB
testcase_09 AC 50 ms
61,696 KB
testcase_10 AC 49 ms
61,056 KB
testcase_11 AC 1,775 ms
259,084 KB
testcase_12 AC 1,442 ms
258,788 KB
testcase_13 AC 1,554 ms
259,396 KB
testcase_14 AC 992 ms
259,072 KB
testcase_15 AC 1,039 ms
258,692 KB
testcase_16 AC 1,538 ms
258,568 KB
testcase_17 AC 1,159 ms
258,332 KB
testcase_18 AC 1,513 ms
259,452 KB
testcase_19 AC 1,199 ms
259,256 KB
testcase_20 AC 1,800 ms
258,448 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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()]

# 1
l, r = 0, N - 1
fl, fr = f(l), f(r)
ans = min(fl, fr)
while r - l > 2:
    m1 = (l * 2 + r) // 3
    m2 = (l + r * 2) // 3
    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:
    ans = min(ans, f(l + r >> 1))

# 2
mi = 10 ** 60
mii = -1
s = max(1, N // 300)
for i in range(0, N, s):
    fi = f(i)
    if fi < mi:
        mi = fi
        mii = i
ans = min(ans, mi)
l = max(0, mii - s)
r = min(N, mii + s)
while r - l > 3:
    m1 = (l * 2 + r) // 3
    m2 = (l + r * 2) // 3
    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