結果

問題 No.972 選び方のスコア
ユーザー eQeeQe
提出日時 2020-04-02 03:26:13
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 917 bytes
コンパイル時間 1,167 ms
コンパイル使用メモリ 146,908 KB
実行使用メモリ 6,812 KB
最終ジャッジ日時 2023-09-09 23:02:45
合計ジャッジ時間 5,136 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
6,456 KB
testcase_01 AC 100 ms
6,484 KB
testcase_02 AC 96 ms
6,688 KB
testcase_03 AC 47 ms
6,588 KB
testcase_04 AC 93 ms
6,632 KB
testcase_05 AC 92 ms
6,496 KB
testcase_06 AC 93 ms
6,448 KB
testcase_07 AC 77 ms
6,068 KB
testcase_08 AC 82 ms
6,464 KB
testcase_09 AC 79 ms
6,564 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 86 ms
6,564 KB
testcase_13 AC 87 ms
6,628 KB
testcase_14 AC 86 ms
6,476 KB
testcase_15 AC 89 ms
6,672 KB
testcase_16 AC 88 ms
6,436 KB
testcase_17 AC 89 ms
6,500 KB
testcase_18 AC 2 ms
4,896 KB
testcase_19 AC 89 ms
6,492 KB
testcase_20 AC 90 ms
6,436 KB
testcase_21 AC 90 ms
6,480 KB
testcase_22 AC 88 ms
6,564 KB
testcase_23 AC 90 ms
6,604 KB
testcase_24 AC 89 ms
6,460 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 3 ms
4,952 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 2 ms
5,056 KB
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <string>
#define ft first
#define sc second
#define pt(sth) cout << sth << "\n"
#define chmax(a, b) (a)=max(a, b)
#define chmin(a, b) (a)=min(a, b)
#define moC(a, s, b) (a)=((a)s(b)+MOD)%MOD
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
static const ll INF=1e18;
static const ll MAX=101010;
static const ll MOD=1e9+7;


/*
 for(i=0; i<N; i++)
   cin >> a[i];
*/



int main(void) {
  ll i, j, k;
  
  ll N;
  cin >> N;
  ll a[MAX*2];
  ll s[MAX*2]={};
  
  for(i=1; i<=N; i++) cin >> a[i];
  sort(a+1, a+N+1);
  for(i=1; i<=N; i++) s[i]=s[i-1]+a[i];
  
  ll ans=0;
  for(i=1; i<=N; i++) {
    chmax(ans, a[i]);
    
    ll l=1, r=min(i-1, N-i)+1;
    while(l+1<r) {
      ll m=(l+r)/2;
      ll t=a[N-m+1]+a[i-1-m+1]-a[i]*2;
      (t>0 ? l:r)=m;
    }
    
    //pt(i<<" "<<l);
    chmax(ans, (s[N]-s[N-l])+(s[i-1]-s[i-1-l])-a[i]*2*l);
  }
  
  pt(ans);
  
}

0