結果

問題 No.972 選び方のスコア
ユーザー NOSSNOSS
提出日時 2020-01-17 22:26:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 173,312 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-25 21:44:18
合計ジャッジ時間 6,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
6,528 KB
testcase_01 AC 127 ms
6,272 KB
testcase_02 AC 121 ms
6,144 KB
testcase_03 AC 61 ms
5,376 KB
testcase_04 AC 121 ms
6,400 KB
testcase_05 AC 118 ms
6,400 KB
testcase_06 AC 119 ms
6,400 KB
testcase_07 AC 97 ms
5,504 KB
testcase_08 AC 111 ms
6,400 KB
testcase_09 AC 108 ms
6,272 KB
testcase_10 AC 110 ms
6,400 KB
testcase_11 AC 116 ms
6,272 KB
testcase_12 AC 115 ms
6,400 KB
testcase_13 AC 116 ms
6,400 KB
testcase_14 AC 114 ms
6,400 KB
testcase_15 AC 116 ms
6,400 KB
testcase_16 AC 117 ms
6,400 KB
testcase_17 AC 117 ms
6,400 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 115 ms
6,400 KB
testcase_20 AC 116 ms
6,400 KB
testcase_21 AC 115 ms
6,400 KB
testcase_22 AC 115 ms
6,272 KB
testcase_23 AC 114 ms
6,272 KB
testcase_24 AC 114 ms
6,400 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long int;
using P = pair<int,int>;
using P3 = pair<ll,P>;
using PP = pair<P, P>;
constexpr int INF = 1<<30;
constexpr ll MOD = (1e9)+7;
constexpr int di[] = {0,1,0,-1};
constexpr int dj[] = {1,0,-1,0};

int n;
vector<ll> a, cum;

ll S(int i, int x){
    if(i-x<0 || i+x>=n) return -INF;
    return cum[i]-cum[i-x]+cum[n]-cum[n-x]-a[i]*2*x;
}

int main(){
    cin >> n;
    a.resize(n);
    cum.resize(n+1);
    for(int i=0;i<n;i++){
        cin >> a[i];
    }
    sort(a.begin(),a.end());
    for(int i=0;i<n;i++){
        cum[i+1] = cum[i] + a[i];
    }
    ll ans = 0;
    for(int i=1;i<n-1;i++){
        int ok = 1, ng = min(i,n-1-i)+1;
        while(abs(ok-ng)>1){
            int mid = (ok+ng)/2;
            if(S(i,mid-1) <= S(i,mid)){
                ok = mid;
            }else{
                ng = mid;
            }
        }
        ans = max(ans, S(i,ok));
    }
    cout << ans << endl;
    return 0;
}
0