結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
18,956 KB
testcase_01 AC 85 ms
14,796 KB
testcase_02 AC 66 ms
13,680 KB
testcase_03 AC 78 ms
14,520 KB
testcase_04 AC 53 ms
12,664 KB
testcase_05 AC 177 ms
20,896 KB
testcase_06 AC 157 ms
19,460 KB
testcase_07 AC 100 ms
16,084 KB
testcase_08 AC 42 ms
11,904 KB
testcase_09 AC 70 ms
14,100 KB
testcase_10 AC 121 ms
17,304 KB
testcase_11 AC 114 ms
16,632 KB
testcase_12 AC 138 ms
18,452 KB
testcase_13 AC 46 ms
12,160 KB
testcase_14 AC 36 ms
11,392 KB
testcase_15 AC 159 ms
19,860 KB
testcase_16 AC 184 ms
21,236 KB
testcase_17 AC 148 ms
19,112 KB
testcase_18 AC 62 ms
13,512 KB
testcase_19 AC 152 ms
19,632 KB
testcase_20 AC 189 ms
21,788 KB
testcase_21 AC 188 ms
21,788 KB
testcase_22 AC 186 ms
21,788 KB
testcase_23 AC 190 ms
21,912 KB
testcase_24 AC 189 ms
21,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect, insort_left, insort
n = int(input())
y = sorted(map(int, input().split()))
sum_y = sum(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 * (n - 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