LeetCode 1217 玩筹码[贪心] HERODING的LeetCode之路

Posted HERODING23

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 1217 玩筹码[贪心] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。



解题思路:
本质上是统计偶数位上的筹码和奇数位上的筹码和,然后进行比较,因为偶数位和奇数位上的筹码各自转换是不需要cost的,那么就可以理解为最后所有奇数位筹码在一个奇数位上,所有偶数位筹码在一个偶数位上,然后少的放入大的上面,这就是最小的cost,代码如下:

class Solution 
public:
    int minCostToMoveChips(vector<int>& position) 
        int count1 = 0;
        int count2 = 0;
        for(int i = 0; i < position.size(); i ++) 
            if(position[i] % 2 == 0) 
                count1 += 1;
             else 
                count2 += 1;
            
        
        return min(count1, count2);
    
;

以上是关于LeetCode 1217 玩筹码[贪心] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode 周赛 157] 1217 玩筹码

每日一题1217. 玩筹码

Leetcode-5213 Play with Chips(玩筹码)

l5213. 玩筹码

LeetCode.1217-交换芯片(Play with Chips)

算法 LEETCODE 1217. Play with Chips