結果

問題 No.198 キャンディー・ボックス2
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-09-23 21:49:55
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 860 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 65,516 KB
実行使用メモリ 11,808 KB
最終ジャッジ日時 2023-08-11 06:09:52
合計ジャッジ時間 5,135 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<(n);i++)
#define reps(i,f,n) for(int i=(f);i<(n);i++)
const ll INF = 1e18;

ll b, c[12];
int n;

ll search(ll m){
	int cnt = 0;
	rep(i, n){
		cnt += abs(m - c[i]);
	}
	return cnt;
}

int main(void){
	cin >> b >> n;
	ll sum = 0;
	rep(i, n){
		cin >> c[i];
		sum += c[i];
	}

	if(n == 1){
		printf("0\n");
		return 0;
	}

	//下凸関数を三分探索
	ll l = 0;
	ll r = sum / n + 1;
	while(r - l > 3){
		ll m1 = (l + 2 + r) / 3;
		ll m2 = (l + r * 2) / 3;
		if(search(m1) > search(m2)){//左側が高い
			l = m1;
		}else{//右側が高い
			r = m2;
		}
	}

	ll ans = INF;
	for (int i = l; i <= r; ++i){
		ans = min(ans, search(i));
	}
	printf("%lld\n", ans);
	return 0;
}
0