結果
| 問題 | No.78 クジ付きアイスバー |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-06-29 15:32:02 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,211 bytes |
| 記録 | |
| コンパイル時間 | 587 ms |
| コンパイル使用メモリ | 65,316 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-30 23:47:31 |
| 合計ジャッジ時間 | 1,564 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 23 WA * 12 |
ソースコード
#include <iostream>
typedef long long int ll;
using namespace std;
ll n, k;
int cost;
int stock;
char box[50];
void buy_box(){
cost = 0;
stock = 0;
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_last_box(int rest){
int last_cost = 0;
for (int i = 0; i < rest; i++){
int ice = box[i];
if (stock > 0){
stock -= 1;
} else {
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;
}
buy_box();
if (cost <= stock){
cout << cost << endl;
} else {
int cost_sum = cost;
cost_sum += (k / n - 1) * (cost - stock);
cost_sum += buy_last_box(n % k);
cout << cost_sum << endl;
}
return 0;
}