結果
問題 | No.929 よくあるボールを移動するやつ |
ユーザー | YamaKasa |
提出日時 | 2019-11-29 17:20:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,328 bytes |
コンパイル時間 | 1,580 ms |
コンパイル使用メモリ | 170,652 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-20 21:20:57 |
合計ジャッジ時間 | 4,500 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 442 ms
6,820 KB |
testcase_13 | AC | 460 ms
6,820 KB |
testcase_14 | AC | 40 ms
6,816 KB |
testcase_15 | AC | 250 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int N; cin >> N; int B[N]; for (int i = 0; i < N; i++) { cin >> B[i]; } vector<int> a; for (int i = 0; i < N; i++) { if (B[i] == 0) { a.push_back(i); } } ll ans = 0; for (int i = 0; i < N; i++) { while (B[i] > 1) { B[i]--; int l = -1; int r = a.size(); int k = N + 1; int m1 = (2 * l + r) / 3; int m2 = (l + 2 * r) / 3; int f1 = abs(i - a[m1]); int f2 = abs(i - a[m2]); while (r - l > 2) { m1 = (2 * l + r) / 3; m2 = (l + 2 * r) / 3; f1 = abs(i - a[m1]); f2 = abs(i - a[m2]); if (f1 <= f2) { r = m2; } else { l = m1; } // cout << m1 << " " << m2 << "\n"; // cout << l << " " << r << "\n"; } if (f1 <= f2) { ans += f1; a.erase(a.begin() + m1); } else { ans += f2; a.erase(a.begin() + m2); } } } cout << ans << "\n"; return 0; }