結果
問題 | No.198 キャンディー・ボックス2 |
ユーザー | hotpepsi |
提出日時 | 2015-11-14 00:23:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 794 bytes |
コンパイル時間 | 956 ms |
コンパイル使用メモリ | 59,540 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 16:30:36 |
合計ジャッジ時間 | 1,955 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include <iostream> #include <sstream> #include <algorithm> #include <numeric> using namespace std; typedef long long LL; int N; LL B; LL C[10]; LL cost(LL t) { LL cost = 0; for (int i = 0; i < N; ++i) { cost += abs(t - C[i]); } return cost; } int main(int argc, char *argv[]) { cin >> B; cin >> N; for (int i = 0; i < N; ++i) { cin >> C[i]; } LL m = accumulate(C, C + N, B) / N; LL left = *min_element(C, C + N); LL right = *max_element(C, C + N); for (LL a = 0; a < 1000; ++a) { if (cost((left * 2 + right) / 2) <= cost((left + right * 2) / 3)) { right = (left + right * 2) / 3; } else { left = (left * 2 + right) / 3; } } LL ans = 1LL << 60; for (LL a = left; a <= min(m, right + 2); ++a) { ans = min(ans, cost(a)); } cout << ans << endl; return 0; }