605. 种花问题https://leetcode.cn/problems/can-place-flowers/
难度简单481
假设有一个很长的花坛,一部分地块种植了花,另一部分却没有。可是,花不能种植在相邻的地块上,它们会争夺水源,两者都会死去。
给你一个整数数组 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
通过次数143,170提交次数436,372
class Solution {
public boolean canPlaceFlowers(int[] flowerbed, int n) {
if(n==0) return true;
if(flowerbed.length==1)
{
if(n<=1 && flowerbed[0]==0) return true;
else return false;
}
if(flowerbed[0]==0 && flowerbed[1]==0)
{
flowerbed[0]=1;
n--;
}
if(flowerbed[flowerbed.length-1]==0 && flowerbed[flowerbed.length-2]==0)
{
flowerbed[flowerbed.length-1]=1;
n--;
}
for(int i=1;i<flowerbed.length-1;i++)
{
if(flowerbed[i-1]==0 && flowerbed[i]==0 && flowerbed[i+1]==0)
{
flowerbed[i]=1;
n--;
}
}
if(n<=0) return true;
return false;
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/68948.html