题目描述
假设有一个很长的花坛,一部分地块种植了花,另一部分却没有。可是,花不能种植在相邻的地块上,它们会争夺水源,两者都会死去。
给你一个整数数组 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 * 10^4
flowerbed[i] 为 0 或 1
flowerbed中不存在相邻的两朵花 0 <= n <= flowerbed.length
class Solution
{
public:
bool canPlaceFlowers(vector<int> &flowerbed, int n)
{
//定义花坛还可以种植的花的数量为count为0
int count = 0;
//将花坛首尾都插上0
flowerbed.insert(flowerbed.begin(), 0);
flowerbed.insert(flowerbed.end(), 0);
int size = flowerbed.size();
for (int i = 1; i < size - 1; i++)
{
//如果数组中满足连续三个数为0,则将i置为1(种上这朵花)
if ((flowerbed[i - 1] == 0) && flowerbed[i] == 0 && flowerbed[i + 1] == 0)
{
flowerbed[i] = 1;
count++;
}
}
//将n与最多能种上的花的数量作比较
return n <= count;
}
};