题目
假设有一个很长的花坛,一部分地块种植了花,另一部分却没有。可是,花不能种植在相邻的地块上,它们会争夺水源,两者都会死去。
给你一个整数数组 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
题解
方法一:
解题思路
见注释
代码
class Solution {
public boolean canPlaceFlowers(int[] flowerbed, int n) {
/*
如果当前位置是1,+2可以跳过一个0,继续判断待插入位置及后一个是否都为0
若待插入位置为0,后一个为1,则将下标+1,移到1的下面
反之可以插入一朵花
*/
for(int i=0;i<flowerbed.length;i+=2){
if(flowerbed[i]==0){
if(i==flowerbed.length-1 || flowerbed[i+1]==0){
n--;
}
else i++;
}
}
return n<=0;
}
}
时间:1ms 空间:41.8MB
方法二:
解题思路
遇到连续三个连续的0,就插入一朵花
代码
class Solution {
public boolean canPlaceFlowers(int[] flowerbed, int n) {
int count = 1;//解决第一个元素为0的情况
for(int i=0;i<flowerbed.length;i++){
if(flowerbed[i]==0)count++;
else count = 0;//遇到1,count置为0
//有三个连续的0出现
if(count==3){
n--;
count=1;//插入花后,会留有一个0
}
}
//退出循环后,若有两个0存在,则代表最后一个位置可以插入一朵花
if(count==2)n--;
return n<=0;
}
}
时间:1ms 空间:41.5MB