結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
18,944 KB
testcase_01 AC 114 ms
14,788 KB
testcase_02 AC 80 ms
13,676 KB
testcase_03 AC 104 ms
14,644 KB
testcase_04 AC 62 ms
12,532 KB
testcase_05 AC 265 ms
20,892 KB
testcase_06 AC 232 ms
19,580 KB
testcase_07 AC 138 ms
15,944 KB
testcase_08 AC 48 ms
11,904 KB
testcase_09 AC 90 ms
14,092 KB
testcase_10 AC 169 ms
17,432 KB
testcase_11 AC 159 ms
16,752 KB
testcase_12 AC 196 ms
18,572 KB
testcase_13 AC 53 ms
12,160 KB
testcase_14 AC 40 ms
11,392 KB
testcase_15 AC 237 ms
19,736 KB
testcase_16 AC 276 ms
21,336 KB
testcase_17 AC 218 ms
18,988 KB
testcase_18 AC 80 ms
13,384 KB
testcase_19 AC 227 ms
19,632 KB
testcase_20 AC 277 ms
21,788 KB
testcase_21 AC 277 ms
21,908 KB
testcase_22 AC 277 ms
21,788 KB
testcase_23 AC 279 ms
21,908 KB
testcase_24 AC 280 ms
21,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect, insort_left, insort
n = int(input())
y = sorted(map(int, input().split()))
len_y = len(y)
m = {}
def f(a):
    if a not in m:
        l = bisect_left(y, a)
        m[a] = abs(sum(y[:l]) - a * l) + abs(sum(y[l:]) - a * (len_y - l))
    return m[a]
l = min(y)
r = max(y)
for _ in range(100):
    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
ans = 1e15
for i in range(l, r + 1):
    ans = min(ans, f(i))
print(ans)
0