結果

問題 No.972 選び方のスコア
ユーザー ntudantuda
提出日時 2021-11-10 23:00:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 110,600 KB
最終ジャッジ日時 2024-11-21 16:02:06
合計ジャッジ時間 8,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
102,572 KB
testcase_01 AC 288 ms
102,552 KB
testcase_02 AC 251 ms
107,504 KB
testcase_03 AC 176 ms
94,708 KB
testcase_04 AC 250 ms
110,600 KB
testcase_05 AC 246 ms
110,208 KB
testcase_06 AC 255 ms
110,220 KB
testcase_07 AC 235 ms
104,160 KB
testcase_08 AC 218 ms
108,812 KB
testcase_09 AC 214 ms
108,728 KB
testcase_10 AC 185 ms
108,880 KB
testcase_11 AC 193 ms
102,292 KB
testcase_12 AC 262 ms
102,092 KB
testcase_13 AC 265 ms
102,260 KB
testcase_14 AC 266 ms
102,048 KB
testcase_15 AC 276 ms
102,660 KB
testcase_16 AC 282 ms
103,208 KB
testcase_17 AC 271 ms
103,204 KB
testcase_18 AC 38 ms
53,836 KB
testcase_19 AC 278 ms
109,796 KB
testcase_20 AC 267 ms
109,584 KB
testcase_21 AC 271 ms
109,724 KB
testcase_22 AC 243 ms
110,396 KB
testcase_23 AC 263 ms
109,876 KB
testcase_24 AC 264 ms
109,896 KB
testcase_25 AC 37 ms
53,696 KB
testcase_26 AC 36 ms
52,884 KB
testcase_27 AC 36 ms
52,468 KB
testcase_28 AC 33 ms
53,356 KB
testcase_29 AC 35 ms
53,564 KB
testcase_30 AC 34 ms
52,260 KB
testcase_31 AC 34 ms
52,324 KB
testcase_32 AC 35 ms
53,180 KB
testcase_33 AC 46 ms
60,952 KB
testcase_34 AC 39 ms
53,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(input())
A = list(map(int, input().split()))

if N < 3:
    print(0)
    sys.exit()
A.sort()

B = [0] * (N + 1)
for i in range(N):
    B[i + 1] = B[i] + A[i]

def g(x, y):
    return B[N] - B[N - y] + B[x] - B[x - y] - (2 * y) * A[x]

def f(x):
    lb = 1
    ub = min(x, N - x - 1)
    t1 = (ub + 2 * lb) // 3
    t2 = (2 * ub + lb) // 3

    while ub - lb > 3:  # ???
        b, c = g(x, t1), g(x, t2)
        if b < c:
            lb = t1
        else:
            ub = t2
        t1 = (ub + 2 * lb) // 3
        t2 = (2 * ub + lb) // 3
    return (max(g(x, lb), g(x, t1), g(x, t2), g(x, ub)))

ans = 0
for i in range(1,N-1):
    ans = max(ans,f(i))
print(ans)
0