結果
問題 |
No.78 クジ付きアイスバー
|
ユーザー |
|
提出日時 | 2018-06-29 15:41:18 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,253 bytes |
コンパイル時間 | 519 ms |
コンパイル使用メモリ | 65,032 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 23:48:00 |
合計ジャッジ時間 | 1,643 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 2 |
other | AC * 23 WA * 12 |
ソースコード
#include <iostream> typedef long long int ll; using namespace std; ll n, k; int cost = 0; int stock = 0; char box[50]; void buy_box(){ for (int i = 0; i < n; i++){ int ice = box[i]; if (stock > 0){ stock -= 1; } else { cost += 1; } if (ice == 2){ stock += 2; } else if (ice == 1){ stock += 1; } } } int buy(int rest){ int last_cost = 0; for (int i = 0; i < rest; i++){ int ice = box[i]; if (stock > 0){ stock -= 1; } else { last_cost += 1; } if (ice == 2){ stock += 2; } else if (ice == 1){ stock += 1; } } return last_cost; } int main(){ cin >> n >> k; string ices; cin >> ices; for (int i = 0; i < n; i++){ int ice = ices[i] - '0'; box[i] = ice; } if (n > k){ cout << buy(k) << endl; return 0; } buy_box(); if (cost <= stock){ cout << cost << endl; } else { int cost_sum = cost; cost_sum += (k / n - 1) * (cost - stock); cost_sum += buy(n % k); cout << cost_sum << endl; } return 0; }