LCP 06. 拿硬币

桌上有 n 堆力扣币,每堆的数量保存在数组 coins 中。我们每次可以选择任意一堆,拿走其中的一枚或者两枚,求拿完所有力扣币的最少次数。

class Solution {
    public int minCount(int[] coins) {
        int cnt = 0;

        for(int coin:coins) {
            cnt += coin%2==0 ? coin/2 : coin/2+1;
        }
        return cnt;
    }
}

你可能感兴趣的:(算法,数据结构)