結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
18,964 KB
testcase_01 AC 58 ms
14,996 KB
testcase_02 AC 48 ms
14,192 KB
testcase_03 AC 56 ms
14,516 KB
testcase_04 AC 44 ms
13,172 KB
testcase_05 AC 106 ms
21,020 KB
testcase_06 AC 92 ms
19,456 KB
testcase_07 AC 64 ms
16,072 KB
testcase_08 AC 36 ms
11,776 KB
testcase_09 AC 52 ms
14,480 KB
testcase_10 AC 73 ms
17,400 KB
testcase_11 AC 72 ms
16,752 KB
testcase_12 AC 81 ms
18,444 KB
testcase_13 AC 38 ms
12,032 KB
testcase_14 AC 33 ms
11,392 KB
testcase_15 AC 93 ms
19,736 KB
testcase_16 AC 105 ms
21,356 KB
testcase_17 AC 87 ms
18,984 KB
testcase_18 AC 49 ms
14,024 KB
testcase_19 AC 91 ms
19,756 KB
testcase_20 AC 107 ms
21,912 KB
testcase_21 AC 106 ms
21,908 KB
testcase_22 AC 105 ms
21,784 KB
testcase_23 AC 107 ms
21,780 KB
testcase_24 AC 106 ms
21,912 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 = min(y)
r = max(y)
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