結果

問題 No.972 選び方のスコア
ユーザー hedwig100hedwig100
提出日時 2020-04-26 13:00:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 1,286 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,360 KB
最終ジャッジ日時 2024-11-17 00:42:36
合計ジャッジ時間 8,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
104,096 KB
testcase_01 AC 248 ms
103,976 KB
testcase_02 AC 242 ms
103,224 KB
testcase_03 AC 152 ms
92,288 KB
testcase_04 AC 231 ms
111,360 KB
testcase_05 AC 221 ms
107,392 KB
testcase_06 AC 221 ms
110,976 KB
testcase_07 AC 190 ms
103,936 KB
testcase_08 AC 199 ms
102,364 KB
testcase_09 AC 189 ms
102,024 KB
testcase_10 AC 144 ms
101,972 KB
testcase_11 AC 151 ms
102,160 KB
testcase_12 AC 271 ms
101,816 KB
testcase_13 AC 237 ms
102,080 KB
testcase_14 AC 259 ms
102,200 KB
testcase_15 AC 239 ms
103,188 KB
testcase_16 AC 223 ms
104,000 KB
testcase_17 AC 228 ms
103,232 KB
testcase_18 AC 45 ms
52,224 KB
testcase_19 AC 247 ms
111,232 KB
testcase_20 AC 231 ms
111,104 KB
testcase_21 AC 237 ms
110,720 KB
testcase_22 AC 222 ms
111,360 KB
testcase_23 AC 244 ms
110,976 KB
testcase_24 AC 236 ms
110,976 KB
testcase_25 AC 38 ms
52,608 KB
testcase_26 AC 39 ms
52,480 KB
testcase_27 AC 40 ms
52,224 KB
testcase_28 AC 39 ms
52,096 KB
testcase_29 AC 40 ms
52,352 KB
testcase_30 AC 41 ms
52,224 KB
testcase_31 AC 42 ms
52,096 KB
testcase_32 AC 41 ms
52,608 KB
testcase_33 AC 48 ms
58,752 KB
testcase_34 AC 42 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 **9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from heapq import heapify,heappop,heappush

def main():
    n = int(input())
    a = list(map(int,input().split()))
    a.sort()
    cuml = [0] * (n + 1)
    cumr = [0] * (n + 1)
    for i in range(n):
        cuml[i + 1] = cuml[i] + a[i]
    for i in range(n - 1,-1,-1):
        cumr[i] = cumr[i + 1] + a[i]
    
    ans = -INF
    #要素数が奇数の場合
    for i in range(n):
        max_len = min(i,n - i - 1)
        r = max_len + 1
        l = 0
        while r - l > 1:
            mid = (r + l)//2
            if a[i - mid] + a[n - mid] > 2*a[i]:
                l = mid
            else:
                r = mid
        ans = max(ans,cuml[i + 1] - cuml[i - l] + cumr[n - l] - a[i]*(2*l + 1))
    
    #要素数が偶数の場合
    for i in range(1,n):
        max_len = min(i - 1,n - i - 1)
        r = max_len + 1
        l = 0
        while r - l > 1:
            mid = (r + l)//2
            if a[i - mid - 1] + a[n - mid] > a[i - 1] + a[i]:
                l = mid
            else:
                r = mid
        ans = max(ans,cuml[i + 1] - cuml[i - l - 1] + cumr[n - l] - (a[i] + a[i - 1])*(l + 1))
    
    print(ans)
if __name__=='__main__':
    main()
0