結果

問題 No.972 選び方のスコア
ユーザー ntudantuda
提出日時 2021-11-10 22:59:36
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 766 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 1,134,832 KB
最終ジャッジ日時 2024-11-21 16:01:28
合計ジャッジ時間 79,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 48 ms
62,888 KB
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 AC 49 ms
56,316 KB
testcase_26 AC 49 ms
55,432 KB
testcase_27 AC 49 ms
55,584 KB
testcase_28 AC 48 ms
54,856 KB
testcase_29 AC 47 ms
54,532 KB
testcase_30 AC 49 ms
56,384 KB
testcase_31 AC 48 ms
55,100 KB
testcase_32 AC 51 ms
56,840 KB
testcase_33 AC 78 ms
73,416 KB
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from functools import lru_cache

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]

@lru_cache(maxsize=None)
def g(x, y):
    return B[N] - B[N - y] + B[x] - B[x - y] - (2 * y) * A[x]

#@lru_cache(maxsize=None)
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