【LeetCode605】-种花问题

方法一

实现思路

就是尽量靠最左边或靠最优边种花,如果不可行尽量在前面只隔一个种花

实现代码

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

提交结果及分析

【LeetCode605】-种花问题
时间复杂度O(n)

方法二

实现思路

为了方便统一化处理,可以在头添加一个0,尾添加一个0,那样就可以实现判断一个元素左右两边及自己都为0,就可以在自己的位置种花
从左到右遍历,能种就种

上一篇:AAAI2022 Data-Centric Robust Learning on ML Models Rank 10/3691(开源代码、做题思路)


下一篇:贪心算法题解