假设你有一个很长的花坛,一部分地块种植了花,另一部分却没有。可是,花卉不能种植在相邻的地块上,它们会争夺水源,两者都会死去。
给定一个花坛(表示为一个数组包含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, 20000]。
n 是非负整数,且不会超过输入数组的大小。
通过次数31,569提交次数98,319
在边界加上两个空地,就不用分情况了
class Solution {
public boolean canPlaceFlowers(int[] flowerbed, int n) {
int num=0,count=1;
for(int i=0;i<flowerbed.length;i++){
if(flowerbed[i]==0){
count++;
}
else{
count=0;
}
if(count==3){
num++;
count=1;
}
}
if(count==2) num++;
return num>=n;
}
}
//只要出现3个空白,num++;并且2个 3空白可以共用一个空白
//只要出现3空白,中间的种树
只用一个if判断,很精妙,值得借鉴
class Solution {
public boolean canPlaceFlowers(int[] flowerbed, int n) {
int i = 0, count = 0;
while (i < flowerbed.length) {
if (flowerbed[i] == 0 && (i == 0 || flowerbed[i - 1] == 0) && (i == flowerbed.length - 1 || flowerbed[i + 1] == 0)) {
flowerbed[i] = 1;
count++;
}
i++;
}
return count >= n;
}
}
自己写的垃圾代码
class Solution {
public boolean canPlaceFlowers(int[] flowerbed, int n) {
if(flowerbed.length==1) {
if(flowerbed[0]==0 || n==0) return true;
else return false;
}
if(flowerbed.length==2){
if((flowerbed[0]==0 && flowerbed[1]==0) && n!=2) return true;
else if(flowerbed[0]+flowerbed[1]==1 && n==0) return true;
else return false;
}
int res=0;
for(int i=0;i<flowerbed.length;i++){
if(i==0) {
if(flowerbed[0]==0 && flowerbed[1]==0){
flowerbed[0]=1;
res++;
}
}
else if(i==flowerbed.length-1){
if(flowerbed[i]==0 && flowerbed[i-1]==0){
flowerbed[i]=1;
res++;
}
}
else{
if(flowerbed[i]==0 && flowerbed[i-1]==0 && flowerbed[i+1]==0){
res++;
flowerbed[i]=1;
}
}
}
return n<=res?true:false;
}
}