LCP 06. 拿硬币 #
题目 #
- 桌上有
n
堆力扣币,每堆的数量保存在数组coins
中。我们每次可以选择任意一堆,拿走其中的一枚或者两枚,求拿完所有力扣币的最少次数。
思路 #
模拟 #
代码 #
模拟 #
class Solution {
public int minCount(int[] coins) {
int ans = 0;
for (int coin: coins) {
ans += coin / 2 + coin % 2;
}
return ans;
}
}