結果

問題 No.972 選び方のスコア
ユーザー milanis48663220milanis48663220
提出日時 2020-04-11 22:11:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,747 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 86,608 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-09-19 14:34:20
合計ジャッジ時間 3,089 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
6,528 KB
testcase_01 AC 46 ms
6,528 KB
testcase_02 AC 42 ms
6,400 KB
testcase_03 AC 23 ms
5,376 KB
testcase_04 AC 46 ms
6,656 KB
testcase_05 AC 45 ms
6,528 KB
testcase_06 AC 46 ms
6,528 KB
testcase_07 AC 33 ms
5,760 KB
testcase_08 AC 30 ms
6,656 KB
testcase_09 AC 29 ms
6,528 KB
testcase_10 AC 26 ms
6,656 KB
testcase_11 AC 26 ms
6,656 KB
testcase_12 AC 26 ms
6,656 KB
testcase_13 AC 27 ms
6,528 KB
testcase_14 AC 26 ms
6,656 KB
testcase_15 AC 27 ms
6,656 KB
testcase_16 AC 28 ms
6,656 KB
testcase_17 AC 29 ms
6,656 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 60 ms
6,528 KB
testcase_20 AC 58 ms
6,528 KB
testcase_21 AC 57 ms
6,528 KB
testcase_22 AC 36 ms
6,400 KB
testcase_23 AC 56 ms
6,656 KB
testcase_24 AC 54 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 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 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;
int N;
ll a[200000];
ll sum[200001];

ll calc(int l, int r){
    return sum[r+1]-sum[l];
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    ll ans = 0;
    cin >> N;
    for(int i = 0; i < N; i++){
        cin >> a[i];
        a[i] *= 2;
    }
    sort(a, a+N);
    for(int i = 0; i < N; i++) sum[i+1] = sum[i]+a[i];
    for(int i = 1; i <= N-2; i++){
        int n_left = i;
        int n_right = N-i-1;
        int l = 1;
        int r = min(n_left, n_right);
        ll tmp = 0;
        if(a[N-1]+a[0]-2*a[i] < 0){

        }else if(a[N-r]+a[i-r]-2*a[i] >= 0){
            tmp = calc(i-r, i-1)+calc(N-r, N-1)-2*r*a[i]; 
        }else{
            while(r-l > 1){
                int c = (l+r)/2;
                if(a[N-c]+a[i-c]-2*a[i] >= 0) l = c;
                else r = c;
            }
            tmp = calc(i-l, i-1)+calc(N-l, N-1)-2*l*a[i];
        }
        ans = max(ans, tmp);
    }
    for(int i = 1; i <= N-3; i++){
        int n_left = i;
        int n_right = N-i-2;
        int l = 1;
        int r = min(n_left, n_right);
        ll m = (a[i]+a[i+1])/2;
        ll tmp = 0;
        if(a[N-1]+a[0]-2*m < 0){

        }else if(a[N-r]+a[i-r]-2*m >= 0){
            tmp = calc(i-r, i-1)+calc(N-r, N-1)-2*r*m; 
        }else{
            while(r-l > 1){
                int c = (l+r)/2;
                if(a[N-c]+a[i-c]-2*m >= 0) l = c;
                else r = c;
            }
            tmp = calc(i-l, i-1)+calc(N-l, N-1)-2*l*m;
        }
        ans = max(ans, tmp);
    }
    cout << ans/2 << endl;
}
0