【LeetCode】605. 种花问题 【贪心】

题目链接:https://leetcode-cn.com/problems/can-place-flowers/

难度:简单

题目描述

假设有一个很长的花坛,一部分地块种植了花,另一部分却没有。可是,花不能种植在相邻的地块上,它们会争夺水源,两者都会死去。

给你一个整数数组  flowerbed 表示花坛,由若干 0 和 1 组成,其中 0 表示没种植花,1 表示种植了花。另有一个数 n ,能否在不打破种植规则的情况下种入 n 朵花?能则返回 true ,不能则返回 false。

测试用例

示例 1:

输入:flowerbed = [1,0,0,0,1], n = 1
输出:true
示例 2:

输入:flowerbed = [1,0,0,0,1], n = 2
输出:false

提示

1 <= flowerbed.length <= 2 * 104
flowerbed[i] 为 0 或 1
flowerbed 中不存在相邻的两朵花
0 <= n <= flowerbed.length

题解

(1)当遍历到元素i等于1时,说明这个位置有花,并且根据题目要求,i+1处必为0,可以直接跳转到i+2处;

(2)当遍历到i等于0时,其前一个位置必为0,只需判断其后一个是否为0即可,如果为0,则种花,并向后跳两格。

【特例】:当末尾元素是0时,则允许种花。

(3)如果元素i为0,其后一个元素i+1为1,则向后跳3格。

【注】有一个提前结束计算的方法,当种花的数量达到n时,即可退出,不再扫面后面的元素。

代码如下

class Solution {
    public boolean canPlaceFlowers(int[] flowerbed, int n) {
        int len = flowerbed.length;
        int cnt = 0;
        int i = 0;
        while(i < len && cnt < n){
            if (flowerbed[i] == 1){
                i += 2;
            } else if (i == len-1 || flowerbed[i+1] == 0){
                cnt++;
                i += 2;
            } else {
                i += 3;
            }
        }
        return cnt >= n;
    }
}

 

你可能感兴趣的:(LeetCode)