博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Can Place Flowers
阅读量:5115 次
发布时间:2019-06-13

本文共 1353 字,大约阅读时间需要 4 分钟。

Suppose you have a long flowerbed in which some of the plots are planted and some are not. However, flowers cannot be planted in adjacent plots - they would compete for water and both would die.

Given a flowerbed (represented as an array containing 0 and 1, where 0 means empty and 1 means not empty), and a number n, return if n new flowers can be planted in it without violating the no-adjacent-flowers rule.

Example 1:

Input: flowerbed = [1,0,0,0,1], n = 1Output: True

Example 2:

Input: flowerbed = [1,0,0,0,1], n = 2Output: False

Note:

  1. The input array won't violate no-adjacent-flowers rule.
  2. The input array size is in the range of [1, 20000].
  3. n is a non-negative integer which won't exceed the input array size.

判断一个花床中可否放置数量为n盆花。要求花与花之间必须有一个空的间隔。

也就是说除了边界,必须有连续3个值都为0才可以放置1盆花。如[1,0,0,0,1]

这时需要判断边界值,因为在[0,0,1,0]或[0,1,0,0]这种情况下也可以放置1盆花。所以要在flowerbed的首位各放置一个0值来保证在这种情况下成立。

需要注意的是对flowerbed的遍历是从1~n-1。

class Solution {public:    bool canPlaceFlowers(vector
& flowerbed, int n) { flowerbed.insert(flowerbed.begin(), 0); flowerbed.push_back(0); for (int i = 1; i < flowerbed.size() - 1; i++) { if (flowerbed[i - 1] + flowerbed[i] + flowerbed[i + 1] == 0) { i++; n--; } } return n <= 0; }};// 16 ms

 

转载于:https://www.cnblogs.com/immjc/p/7873764.html

你可能感兴趣的文章
IO—》Properties类&序列化流与反序列化流
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
关于TFS2010使用常见问题
查看>>
聚合与组合
查看>>
ionic2+ 基础
查看>>
Screening technology proved cost effective deal
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>
【2.2】创建博客文章模型
查看>>
Jsp抓取页面内容
查看>>
大三上学期软件工程作业之点餐系统(网页版)的一些心得
查看>>
可选参数的函数还可以这样设计!
查看>>
Java语言概述
查看>>
关于BOM知识的整理
查看>>
使用word发布博客
查看>>
面向对象的小demo
查看>>
微服务之初了解(一)
查看>>
GDOI DAY1游记
查看>>
收集WebDriver的执行命令和参数信息
查看>>
数据结构与算法(三)-线性表之静态链表
查看>>
mac下的mysql报错:ERROR 1045(28000)和ERROR 2002 (HY000)的解决办法
查看>>