605. 种花问题
假设有一个很长的花坛,一部分地块种植了花,另一部分却没有。可是,花不能种植在相邻的地块上,它们会争夺水源,两者都会死去。
给你一个整数数组 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
代码
跳格子法
class Solution { public: bool canPlaceFlowers(vector<int>& flowerbed, int n) { bool flag=false; int size=flowerbed.size(); for(int i=0;i<size;i+=2) { if(flowerbed[i]==0) { // 如果当前为空 并且下一个也为空(或者是最后一个) if(i+1==size || flowerbed[i+1]==0) { n--; }else{ // 下一个为1 i+1 进行判定下一个循环 i++; } } } if(n>0) return false; else return true; } };
贪心法
class Solution { public boolean canPlaceFlowers(int[] flowerbed, int n) { for(int i=0; i<flowerbed.length; i++) { // 一条判断 当前是0 且 前一个是0 且 后一个0 并且注意边界 if(flowerbed[i] == 0 && (i == 0 || flowerbed[i-1] == 0) && (i == flowerbed.length-1 || flowerbed[i+1] == 0)) { n--; if(n <= 0) return true; flowerbed[i] = 1; } } return n <= 0; } }