結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
18,896 KB
testcase_01 AC 84 ms
14,928 KB
testcase_02 AC 68 ms
13,684 KB
testcase_03 AC 78 ms
14,520 KB
testcase_04 AC 51 ms
12,672 KB
testcase_05 AC 178 ms
21,036 KB
testcase_06 AC 156 ms
19,464 KB
testcase_07 AC 98 ms
15,952 KB
testcase_08 AC 42 ms
11,904 KB
testcase_09 AC 69 ms
14,100 KB
testcase_10 AC 120 ms
17,436 KB
testcase_11 AC 112 ms
16,760 KB
testcase_12 AC 138 ms
18,584 KB
testcase_13 AC 45 ms
12,160 KB
testcase_14 AC 36 ms
11,392 KB
testcase_15 AC 159 ms
19,884 KB
testcase_16 AC 183 ms
21,368 KB
testcase_17 AC 147 ms
18,992 KB
testcase_18 AC 64 ms
13,392 KB
testcase_19 AC 153 ms
19,768 KB
testcase_20 AC 190 ms
21,924 KB
testcase_21 AC 189 ms
21,792 KB
testcase_22 AC 188 ms
21,920 KB
testcase_23 AC 189 ms
21,920 KB
testcase_24 AC 192 ms
21,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect, insort_left, insort
n = int(input())
y = sorted(map(int, input().split()))
sum_y = sum(y)
len_y = len(y)
m = {}
def f(a):
    if a not in m:
        l = bisect_left(y, a)
        sum_yl = sum(y[:l])
        m[a] = abs(sum_yl - a * l) + abs((sum_y - sum_yl) - 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