結果

問題 No.972 選び方のスコア
ユーザー face4face4
提出日時 2020-01-17 22:47:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 757 bytes
コンパイル時間 893 ms
コンパイル使用メモリ 77,072 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-25 22:57:48
合計ジャッジ時間 4,780 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
6,528 KB
testcase_01 AC 111 ms
6,528 KB
testcase_02 AC 106 ms
6,272 KB
testcase_03 AC 52 ms
5,376 KB
testcase_04 AC 104 ms
6,528 KB
testcase_05 WA -
testcase_06 AC 102 ms
6,400 KB
testcase_07 AC 83 ms
5,632 KB
testcase_08 AC 95 ms
6,528 KB
testcase_09 AC 93 ms
6,528 KB
testcase_10 AC 78 ms
6,528 KB
testcase_11 AC 83 ms
6,400 KB
testcase_12 AC 83 ms
6,528 KB
testcase_13 WA -
testcase_14 AC 85 ms
6,656 KB
testcase_15 AC 97 ms
6,528 KB
testcase_16 AC 100 ms
6,528 KB
testcase_17 AC 100 ms
6,528 KB
testcase_18 WA -
testcase_19 AC 95 ms
6,528 KB
testcase_20 AC 97 ms
6,528 KB
testcase_21 AC 98 ms
6,656 KB
testcase_22 WA -
testcase_23 AC 96 ms
6,400 KB
testcase_24 AC 99 ms
6,528 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 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