結果

問題 No.972 選び方のスコア
ユーザー tekihei2317tekihei2317
提出日時 2020-01-17 22:13:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 1,899 ms
コンパイル使用メモリ 172,968 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-06-25 20:47:10
合計ジャッジ時間 5,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
5,504 KB
testcase_01 AC 117 ms
5,504 KB
testcase_02 AC 111 ms
5,504 KB
testcase_03 AC 55 ms
5,376 KB
testcase_04 AC 108 ms
5,504 KB
testcase_05 AC 108 ms
5,632 KB
testcase_06 AC 108 ms
5,504 KB
testcase_07 AC 87 ms
5,376 KB
testcase_08 AC 99 ms
5,504 KB
testcase_09 AC 95 ms
5,504 KB
testcase_10 AC 97 ms
5,632 KB
testcase_11 AC 102 ms
5,504 KB
testcase_12 AC 102 ms
5,504 KB
testcase_13 AC 104 ms
5,504 KB
testcase_14 AC 102 ms
5,632 KB
testcase_15 AC 104 ms
5,504 KB
testcase_16 AC 105 ms
5,504 KB
testcase_17 AC 104 ms
5,504 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 103 ms
5,504 KB
testcase_20 AC 103 ms
5,504 KB
testcase_21 AC 103 ms
5,632 KB
testcase_22 AC 104 ms
5,504 KB
testcase_23 AC 103 ms
5,632 KB
testcase_24 AC 102 ms
5,504 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<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 ok=0,ng=min(i,N-(i+1))+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