結果
| 問題 | No.972 選び方のスコア |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-25 21:57:05 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 726 bytes |
| 記録 | |
| コンパイル時間 | 450 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 126,976 KB |
| 最終ジャッジ日時 | 2026-05-21 13:43:19 |
| 合計ジャッジ時間 | 8,183 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 WA * 6 |
ソースコード
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
##############################################################
import sys
input = sys.stdin.readline
def test(x):
return A[i-x]+A[-1-x]-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-1-i),test)
S=acc[i+1]-acc[i-k] +acc[N]-acc[N-k] -m*(2*k+1)
res=max(res,S)
print(res)