結果

問題 No.972 選び方のスコア
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-15 01:40:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,984 KB
最終ジャッジ日時 2024-10-15 01:40:39
合計ジャッジ時間 8,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 237 ms
114,664 KB
testcase_01 AC 233 ms
114,544 KB
testcase_02 AC 223 ms
107,008 KB
testcase_03 AC 150 ms
98,816 KB
testcase_04 AC 204 ms
108,672 KB
testcase_05 AC 206 ms
108,544 KB
testcase_06 AC 204 ms
108,288 KB
testcase_07 AC 203 ms
112,512 KB
testcase_08 AC 214 ms
107,008 KB
testcase_09 AC 189 ms
107,136 KB
testcase_10 AC 120 ms
107,264 KB
testcase_11 AC 131 ms
112,812 KB
testcase_12 AC 140 ms
112,516 KB
testcase_13 AC 226 ms
113,668 KB
testcase_14 AC 139 ms
112,512 KB
testcase_15 AC 264 ms
115,148 KB
testcase_16 AC 230 ms
114,800 KB
testcase_17 AC 223 ms
114,280 KB
testcase_18 AC 41 ms
52,096 KB
testcase_19 AC 232 ms
121,984 KB
testcase_20 AC 262 ms
107,904 KB
testcase_21 AC 233 ms
121,728 KB
testcase_22 AC 200 ms
108,672 KB
testcase_23 AC 235 ms
121,728 KB
testcase_24 AC 233 ms
108,416 KB
testcase_25 AC 40 ms
51,840 KB
testcase_26 AC 41 ms
52,096 KB
testcase_27 AC 41 ms
51,712 KB
testcase_28 AC 46 ms
51,968 KB
testcase_29 AC 41 ms
51,840 KB
testcase_30 AC 42 ms
52,224 KB
testcase_31 AC 41 ms
51,840 KB
testcase_32 AC 41 ms
51,968 KB
testcase_33 AC 42 ms
52,608 KB
testcase_34 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = [0]
for a in A:
    S.append(S[-1] + a)


def better(i, n):
    p = A[-n] - A[i]
    m = A[i] - A[i-n]
    return p > m


def calc_score(i):
    ai = A[i]
    nl = i
    nr = N - i - 1
    n = min(nl, nr)
    left = 1
    right = n
    if better(i, right):
        h = S[N] - S[N-n]
        l = S[i] - S[i-n]
        score = h + l - ai*n*2
        return score
    
    if not better(i, 1):
        return A[-1] + A[i-1] - 2*A[i]
    
    while right-left > 1:
        mid = (right + left) // 2
        if better(i, mid):
            left = mid
        else:
            right = mid
    
    h = S[N] - S[N-left]
    l = S[i] - S[i-left]
    score = h + l - ai*left*2
    return score

ans = 0
for i in range(N):
    ans = max(ans, calc_score(i))

print(ans)
0