結果

問題 No.972 選び方のスコア
ユーザー NoneNone
提出日時 2021-03-25 22:57:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 945 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 120,320 KB
最終ジャッジ日時 2024-11-27 08:31:48
合計ジャッジ時間 6,797 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
114,376 KB
testcase_01 AC 205 ms
114,256 KB
testcase_02 AC 195 ms
105,088 KB
testcase_03 AC 132 ms
98,432 KB
testcase_04 AC 191 ms
107,136 KB
testcase_05 AC 190 ms
107,008 KB
testcase_06 AC 192 ms
106,624 KB
testcase_07 AC 170 ms
110,848 KB
testcase_08 AC 159 ms
105,216 KB
testcase_09 AC 161 ms
105,472 KB
testcase_10 AC 145 ms
105,088 KB
testcase_11 AC 148 ms
113,112 KB
testcase_12 AC 156 ms
113,256 KB
testcase_13 AC 189 ms
113,128 KB
testcase_14 AC 152 ms
112,876 KB
testcase_15 AC 199 ms
114,216 KB
testcase_16 AC 194 ms
114,688 KB
testcase_17 AC 197 ms
114,080 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 201 ms
120,320 KB
testcase_20 AC 199 ms
106,368 KB
testcase_21 AC 202 ms
120,064 KB
testcase_22 AC 185 ms
107,264 KB
testcase_23 AC 202 ms
120,064 KB
testcase_24 AC 197 ms
106,624 KB
testcase_25 AC 36 ms
51,968 KB
testcase_26 AC 37 ms
51,712 KB
testcase_27 AC 37 ms
51,712 KB
testcase_28 AC 37 ms
51,712 KB
testcase_29 AC 35 ms
51,840 KB
testcase_30 AC 35 ms
51,584 KB
testcase_31 AC 35 ms
51,968 KB
testcase_32 AC 36 ms
51,840 KB
testcase_33 AC 43 ms
58,112 KB
testcase_34 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def binary_search_int(ok, ng, test):
    """
    :param ok: solve(x) = True を必ず満たす点
    :param ng: solve(x) = False を必ず満たす点
    """
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if test(mid):
            ok = mid
        else:
            ng = mid
    return ok

def example():
    global input
    example = iter(
        """
10
3 8 9 7 2 2 10 10 35 5

        """
            .strip().split("\n"))
    input = lambda: next(example)



##############################################################
import sys
input = sys.stdin.readline

# example()

def test(x):
    if x==0: return True
    return A[i-x]+A[N-x]-2*m>0

N=int(input())
A=list(map(int, input().split()))
A.sort()
acc=[0]
for a in A:
    acc.append(acc[-1]+a)

res=0
for i in range(N):
    m=A[i]
    k=binary_search_int(0,min(i+1,N-i),test)
    S=acc[i+1]-acc[i-k] +acc[N]-acc[N-k] -m*(2*k+1)
    if res<S:
        res=S
print(res)
0