結果

問題 No.837 Noelちゃんと星々2
ユーザー betrue12betrue12
提出日時 2019-06-14 21:46:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 1,838 ms
コンパイル使用メモリ 168,852 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 14:14:19
合計ジャッジ時間 2,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int N;
int64_t A[100000], S[100001];

// [l, r)
int64_t calc(int l, int r){
    int m = l + (r-l)/2;
    int64_t res = (m-l)*A[m];
    res -= S[m] - S[l];
    res += S[r] - S[m];
    res -= (r-m)*A[m];
    return res;
}

int main(){
    cin >> N;
    for(int i=0; i<N; i++) cin >> A[i];
    sort(A, A+N);
    if(A[0] == A[N-1]){
        cout << 1 << endl;
        return 0;
    }

    for(int i=0; i<N; i++) S[i+1] = A[i] + S[i];

    int64_t ans = 1e18;
    for(int i=1; i<N; i++){
        int64_t res = calc(0, i) + calc(i, N);
        ans = min(ans, res);
    }
    cout << ans << endl;
    return 0;
}
0