結果

問題 No.198 キャンディー・ボックス2
ユーザー airuaiairuai
提出日時 2016-09-18 17:42:02
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 795 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 56,352 KB
実行使用メモリ 16,720 KB
最終ジャッジ日時 2024-11-17 08:56:00
合計ジャッジ時間 35,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,320 KB
testcase_11 AC 2 ms
10,496 KB
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
8,320 KB
testcase_17 AC 1 ms
10,496 KB
testcase_18 AC 2 ms
8,192 KB
testcase_19 AC 1 ms
10,496 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 414 ms
5,248 KB
testcase_26 AC 413 ms
5,248 KB
testcase_27 AC 413 ms
5,248 KB
testcase_28 TLE -
testcase_29 AC 775 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

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