每日一题:种花问题(LeetCode 605)

题目

假设有一个很长的花坛,一部分地块种植了花,另一部分却没有。可是,花不能种植在相邻的地块上,它们会争夺水源,两者都会死去。
给你一个整数数组 flowerbed 表示花坛,由若干 0 和 1 组成,其中 0 表示没种植花,1 表示种植了花。另有一个数 n ,能否在不打破种植规则的情况下种入 n 朵花?能则返回 true ,不能则返回 false。

种花问题

class Solution {
public:
    bool canPlaceFlowers(vector<int>& flowerbed, int n) {
       for( int i = 0 ; i < flowerbed.size() && n > 0 ; )
       {
           if(flowerbed[i] == 1){
               i += 2;
           }else if( i == flowerbed.size() - 1 || flowerbed[i + 1] == 0)
           {
               n--;
               i += 2;
           }
           else
           {
               i += 3;
           }
       }
       return n <= 0;

    }
};
扫描关注程序区

有任何问题,请联系邮箱:support@progdomain.com

THE END
分享
二维码
打赏
海报
每日一题:种花问题(LeetCode 605)
题目 假设有一个很长的花坛,一部分地块种植了花,另一部分却没有。可是,花不能种植在相邻的地块上,它们会争夺水源,两者都会死去。 给你一个整数数组 flowe……
<<上一篇
下一篇>>