結果

問題 No.972 選び方のスコア
ユーザー face4face4
提出日時 2020-01-17 22:43:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 75,608 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-25 22:38:33
合計ジャッジ時間 4,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
6,400 KB
testcase_01 AC 115 ms
6,272 KB
testcase_02 AC 109 ms
6,144 KB
testcase_03 AC 54 ms
5,376 KB
testcase_04 AC 106 ms
6,400 KB
testcase_05 WA -
testcase_06 AC 107 ms
6,400 KB
testcase_07 AC 86 ms
5,504 KB
testcase_08 AC 97 ms
6,400 KB
testcase_09 AC 94 ms
6,400 KB
testcase_10 AC 96 ms
6,528 KB
testcase_11 AC 102 ms
6,400 KB
testcase_12 AC 102 ms
6,400 KB
testcase_13 AC 103 ms
6,400 KB
testcase_14 AC 102 ms
6,528 KB
testcase_15 AC 103 ms
6,400 KB
testcase_16 AC 103 ms
6,400 KB
testcase_17 AC 104 ms
6,400 KB
testcase_18 WA -
testcase_19 AC 101 ms
6,400 KB
testcase_20 AC 101 ms
6,400 KB
testcase_21 AC 101 ms
6,528 KB
testcase_22 WA -
testcase_23 AC 99 ms
6,400 KB
testcase_24 AC 101 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 2 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 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
typedef long long ll;

int main(){
    int n;
    cin >> n;
    vector<ll> v(n+1, 0);
    for(int i = 1; i <= n; i++)  cin >> v[i];
    sort(v.begin(), v.end());
    vector<ll> sum = v;
    for(int i = 1; i <= n; i++) sum[i] += sum[i-1];
    ll ans = 0;
    for(int i = 2; i < n; i++){
        if(v[n]-v[i]+v[i-1]-v[i] < 0)   continue;
        int l = 1, r = min(i-1, n-i)+1;
        while(r-l > 1){
            int mid = (l+r)/2;
            if(v[n-mid-1]-v[i]+v[i-mid]-v[i] >= 0)  l = mid;
            else                                    r = mid;
        }
        ans = max(ans, sum[n]-sum[n-l]+sum[i-1]-sum[i-1-l]-2*l*v[i]);
    }
    cout << ans << endl;
    return 0;
}
0