結果

問題 No.972 選び方のスコア
ユーザー ransewhaleransewhale
提出日時 2020-01-17 22:27:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 835 bytes
コンパイル時間 1,705 ms
コンパイル使用メモリ 170,616 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-06-25 21:48:38
合計ジャッジ時間 5,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
6,656 KB
testcase_01 AC 112 ms
6,528 KB
testcase_02 AC 106 ms
6,400 KB
testcase_03 AC 52 ms
5,376 KB
testcase_04 AC 104 ms
6,912 KB
testcase_05 AC 102 ms
6,784 KB
testcase_06 AC 103 ms
6,656 KB
testcase_07 AC 84 ms
6,016 KB
testcase_08 AC 94 ms
6,656 KB
testcase_09 AC 90 ms
6,784 KB
testcase_10 AC 95 ms
6,784 KB
testcase_11 AC 100 ms
6,656 KB
testcase_12 AC 100 ms
6,528 KB
testcase_13 AC 100 ms
6,784 KB
testcase_14 AC 103 ms
6,656 KB
testcase_15 AC 100 ms
6,656 KB
testcase_16 AC 101 ms
6,656 KB
testcase_17 AC 100 ms
6,784 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 98 ms
6,784 KB
testcase_20 AC 99 ms
6,656 KB
testcase_21 AC 99 ms
6,656 KB
testcase_22 AC 98 ms
6,528 KB
testcase_23 AC 98 ms
6,528 KB
testcase_24 AC 97 ms
6,656 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;
typedef long long ll;
const int INF = (1<<30);
const ll INFLL = (1ll<<60);
const ll MOD = (ll)(1e9+7);

#define l_ength size

void mul_mod(ll& a, ll b){
	a *= b;
	a %= MOD;
}

void add_mod(ll& a, ll b){
	a = (a<MOD)?a:(a-MOD);
	b = (b<MOD)?b:(b-MOD);
	a += b;
	a = (a<MOD)?a:(a-MOD);
}

ll s[225816],a[225816];

int main(void){
	int n,i,l,r,m;
	ll tmp,ans=0ll;
	cin >> n;
	for(i=0; i<n; ++i){
		cin >> a[i];
	}
	sort(a,a+n);
	for(i=0; i<n; ++i){
		s[i+1] = s[i]+a[i];
	}
	for(i=1; i<n; ++i){
		l = max(-1,i*2-n-1); r = i-1;
		if(a[n-1]+a[r]-(a[i]*2)<0ll){
			continue;
		}
		while(r-l>1){
			m = (l+r)/2;
			if(a[n-(i-m)]+a[m]-a[i]*2>0ll){
				r = m;
			}else{
				l = m;
			}
		}
		tmp = s[n]-s[n-(i-r)]+s[i]-s[r]-a[i]*(i-r)*2;
		ans = max(ans,tmp);
	}
	cout << ans << endl;
	return 0;
}
0