結果

問題 No.198 キャンディー・ボックス2
ユーザー airuaiairuai
提出日時 2016-09-18 17:42:02
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 795 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 52,544 KB
実行使用メモリ 14,548 KB
最終ジャッジ日時 2023-08-10 22:38:17
合計ジャッジ時間 4,970 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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>

int main() {
	std::cin.tie(0);
	std::ios::sync_with_stdio(false);
	int b;
	std::cin >> b;
	int n;
	std::cin >> n;
	int sum = 0, *c, maxi = 0;
	c = new int[n];
	for (int i = 0; i < n; ++i) {
		std::cin >> c[i];
		sum += c[i];
		if (maxi < c[i]) {
			maxi = c[i];
		}
	}
	if (n == 1) {
		std::cout << "1" << std::endl;
		return 0;
	}
	long long count = 0, t = 20000000000;
	int lv, i;
	for (i = 0; i <= maxi; ++i, t = count, count = 0) {
		for (int j = 0; j < n; ++j) {
			count += abs(i - c[j]);
		}
		if (count >= t) {
			lv = i - 1;
			break;
		}
	}
	if (i > maxi) {
		lv = maxi;
	}
	int sa;
	if ((sa = lv * n - (sum + b)) > 0) {
		lv -= sa / n;
		lv -= ((sa % n) ? 1 : 0);
	}
	t = 0;
	for (int i = 0; i < n; ++i) {
		t += abs(lv - c[i]);
	}
	std::cout << t << std::endl;
}
0