結果

問題 No.972 選び方のスコア
ユーザー tekihei2317tekihei2317
提出日時 2020-01-18 15:03:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 1,637 ms
コンパイル使用メモリ 173,480 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 14:46:11
合計ジャッジ時間 5,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
6,816 KB
testcase_01 AC 116 ms
6,944 KB
testcase_02 AC 110 ms
6,940 KB
testcase_03 AC 53 ms
6,940 KB
testcase_04 AC 107 ms
6,940 KB
testcase_05 AC 107 ms
6,940 KB
testcase_06 AC 107 ms
6,944 KB
testcase_07 AC 86 ms
6,940 KB
testcase_08 AC 96 ms
6,944 KB
testcase_09 AC 94 ms
6,940 KB
testcase_10 AC 96 ms
6,940 KB
testcase_11 AC 99 ms
6,940 KB
testcase_12 AC 102 ms
6,940 KB
testcase_13 AC 102 ms
6,944 KB
testcase_14 AC 102 ms
6,940 KB
testcase_15 AC 103 ms
6,940 KB
testcase_16 AC 101 ms
6,944 KB
testcase_17 AC 104 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 102 ms
6,944 KB
testcase_20 AC 101 ms
6,940 KB
testcase_21 AC 101 ms
6,944 KB
testcase_22 AC 102 ms
6,944 KB
testcase_23 AC 101 ms
6,944 KB
testcase_24 AC 101 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using Lint=long long;

int main()
{
   int N; cin>>N;
   vector<int> a(N);
   for(int i=0;i<N;i++) cin>>a[i];
   sort(a.begin(),a.end());

   vector<Lint> sum(N+1);
   for(int i=0;i<N;i++) sum[i+1]=sum[i]+a[i];

   Lint ans=0;
   for(int i=0;i<N;i++){
      int L=i,R=N-(i+1);
      int ok=0,ng=min(L,R)+1;
      while(ng-ok>1){
         int mid=(ok+ng)/2;
         if(a[i-mid]+a[N-mid]-2*a[i]>0) ok=mid;
         else ng=mid;
      }
      ans=max(ans,(sum[i]-sum[i-ok])+(sum[N]-sum[N-ok])-2LL*ok*a[i]);
   }
   cout<<ans<<endl;
   return 0;
}
0