贪心算法3种花问题(easy)

Posted 念奕玥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了贪心算法3种花问题(easy)相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
看题目就很容易想到利用贪心来解题。
为了在现有地块中种上更多的花,所以贪心策略为只要有符合种花条件的地块,就在该地块上种花。所以遍历所有地块,看最多能种的花是否大于等于要种的花。

判断地块 i i i是否能种花需要判断三处:
当前地块 i i i,地块 i − 1 i-1 i1,地块 i + 1 i+1 i+1,一般情况下,这三块地块的值需均为0(未种花状态)

flowerbed[i]==0 && flowerbed[i-1]==0  && flowerbed[i+1]==0 

特殊情况:

  • i = = 0 i==0 i==0时,只需要判断地块 i i i和地块 i + 1 i+1 i+1是否未种花
flowerbed[i]==0 && flowerbed[i+1]==0  && i== 0
  • i = = l e n g t h − 1 i==length-1 i==length1时,只需要判断地块 i i i和地块 i − 1 i-1 i1是否未种花
flowerbed[i]==0 && flowerbed[i-1]==0  && i== flowerbed.length-1

code:

class Solution {
    public boolean canPlaceFlowers(int[] flowerbed, int n) {
        int num = flowerbed.length;
        if(num==0) return false;
        int count=0;//记录种花的数量
        for(int i=0;i<num;i++){
            if(flowerbed[i]==0 && (i==0||flowerbed[i-1]==0) && (i==num-1 || flowerbed[i+1]==0)){
                flowerbed[i]=1;//种上花
                count++;
            }
        }
        return count>=n?true:false;
    }
}

以上是关于贪心算法3种花问题(easy)的主要内容,如果未能解决你的问题,请参考以下文章

leetcode605. 种花问题贪心策略,局部区间最优解法

贪心算法题解

贪心605. 种花问题

LeetCode 605 种花问题(贪心)

贪心算法 Heidi and Library (easy)

种花 [JZOJ4726] [可撤销贪心]