[LeetCode] Maximum Ice Cream Bars

1833. Maximum Ice Cream Bars

It is a sweltering summer day, and a boy wants to buy some ice cream bars.

At the store, there are n ice cream bars. You are given an array costs of length n, where costs[i] is the price of the ith ice cream bar in coins. The boy initially has coins coins to spend, and he wants to buy as many ice cream bars as possible.

Return the maximum number of ice cream bars the boy can buy with coins coins.

Note: The boy can buy the ice cream bars in any order.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Solution {
public:
int maxIceCream(vector<int>& costs, int coins) {
sort(costs.begin(), costs.end());
int res = 0;
for(auto& cost : costs) {
if(coins >= cost) {
coins -= cost;
res++;
} else
return res;
}
return res;
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2021/04/18/PS/LeetCode/maximum-ice-cream-bars/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.