結果

問題 No.198 キャンディー・ボックス2
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-09-23 21:49:55
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 860 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 63,944 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-11-17 19:56:17
合計ジャッジ時間 45,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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