結果

問題 No.972 選び方のスコア
ユーザー furafura
提出日時 2020-07-25 16:10:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 205,300 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-27 07:51:11
合計ジャッジ時間 5,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
6,528 KB
testcase_01 AC 65 ms
6,528 KB
testcase_02 AC 61 ms
6,272 KB
testcase_03 AC 32 ms
5,376 KB
testcase_04 AC 65 ms
6,528 KB
testcase_05 AC 65 ms
6,528 KB
testcase_06 AC 64 ms
6,528 KB
testcase_07 AC 49 ms
5,632 KB
testcase_08 AC 52 ms
6,528 KB
testcase_09 AC 51 ms
6,400 KB
testcase_10 AC 51 ms
6,528 KB
testcase_11 AC 52 ms
6,272 KB
testcase_12 AC 51 ms
6,528 KB
testcase_13 AC 52 ms
6,528 KB
testcase_14 AC 51 ms
6,528 KB
testcase_15 AC 53 ms
6,528 KB
testcase_16 AC 52 ms
6,528 KB
testcase_17 AC 52 ms
6,528 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 62 ms
6,528 KB
testcase_20 AC 62 ms
6,528 KB
testcase_21 AC 62 ms
6,528 KB
testcase_22 AC 62 ms
6,400 KB
testcase_23 AC 61 ms
6,528 KB
testcase_24 AC 61 ms
6,528 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 1 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>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

int main(){
	int n; scanf("%d",&n);
	vector<lint> a(n);
	rep(i,n) scanf("%lld",&a[i]);

	sort(a.begin(),a.end());

	vector<lint> cum(n+1);
	rep(i,n) cum[i+1]=cum[i]+a[i];

	lint ans=0;
	rep(i,n){
		int lo=0,hi=n;
		while(hi-lo>1){
			int mi=(lo+hi)/2;
			if(mi>0 && n-mi>i && i-mi>=0 && a[n-mi]+a[i-mi]-2*a[i]>=0) lo=mi;
 			else hi=mi;
		}
		ans=max(ans,cum[n]-cum[n-lo]+a[i]+cum[i]-cum[i-lo]-(2*lo+1)*a[i]);
	}
	printf("%lld\n",ans);

	return 0;
}
0