結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,856 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 39 ms
52,128 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 53 ms
61,824 KB
testcase_09 AC 50 ms
61,312 KB
testcase_10 AC 57 ms
61,824 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,493 ms
259,024 KB
testcase_15 AC 1,603 ms
258,904 KB
testcase_16 TLE -
testcase_17 AC 1,729 ms
259,012 KB
testcase_18 TLE -
testcase_19 AC 1,754 ms
258,928 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
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 // 500)
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