結果

問題 No.609 Noelちゃんと星々
ユーザー daku9640daku9640
提出日時 2018-08-12 01:10:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,032 KB
最終ジャッジ日時 2024-09-23 06:40:20
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
18,964 KB
testcase_01 AC 56 ms
14,916 KB
testcase_02 AC 47 ms
14,188 KB
testcase_03 AC 53 ms
14,636 KB
testcase_04 AC 42 ms
13,040 KB
testcase_05 AC 97 ms
20,892 KB
testcase_06 AC 87 ms
19,452 KB
testcase_07 AC 62 ms
16,060 KB
testcase_08 AC 36 ms
11,776 KB
testcase_09 AC 49 ms
14,348 KB
testcase_10 AC 70 ms
17,296 KB
testcase_11 AC 68 ms
16,624 KB
testcase_12 AC 77 ms
18,568 KB
testcase_13 AC 38 ms
12,160 KB
testcase_14 AC 33 ms
11,264 KB
testcase_15 AC 89 ms
19,984 KB
testcase_16 AC 100 ms
21,356 KB
testcase_17 AC 84 ms
19,104 KB
testcase_18 AC 46 ms
14,024 KB
testcase_19 AC 85 ms
19,628 KB
testcase_20 AC 99 ms
22,032 KB
testcase_21 AC 100 ms
21,904 KB
testcase_22 AC 101 ms
21,912 KB
testcase_23 AC 100 ms
22,032 KB
testcase_24 AC 100 ms
21,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect, insort_left, insort
from itertools import accumulate
n = int(input())
y = sorted(map(int, input().split()))
sum_y = tuple(accumulate(y))
m = {}
def f(a):
    if a not in m:
        l = bisect_left(y, a)
        m[a] = abs(sum_y[l - 1] - a * l) + abs((sum_y[-1] - sum_y[l - 1]) - a * (n - l))
    return m[a]
l = y[0]
r = y[-1]
while r - l > 2:
    mid_l = (l * 2 + r) // 3
    mid_r = (l + r * 2) // 3
    if f(mid_l) > f(mid_r):
        l = mid_l
    else:
        r = mid_r
print(min(f(l), f(l + 1), f(l + 2)))
0