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

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

题目描述:

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.

 

要完成的函数:

bool canPlaceFlowers(vector<int>& flowerbed, int n) 

 

说明:

1、假设你是一个花农,要在花床上种花,花不能相邻种植,不然会彼此竞争空气、水分和营养物质。现在给你一个vector和一个整数n,vector中的0代表此处没有种花,1代表此处种花,要求判断能不能在花床上再种下n株花,彼此不能相邻。

2、这道题目不难,先对最开始的边界情况做处理,接着再做一次遍历直到倒数第二位,最后再对最后一个数做边界处理。

中间处理的过程是逐个判断,对应不同的数值做不同的操作。

代码如下:(附详解)

bool canPlaceFlowers(vector
& flowerbed, int n) { int s1=flowerbed.size(),i=0,count=0; if(flowerbed[i]==1)//如果最开始是1,那么得从第2位(从0开始)开始考虑 i+=2; else//如果最开始是0 { if(flowerbed[i+1]==0)//如果下一位还是0,那么count++,下一次从i=2开始处理 { count++; i+=2; } else//如果下一位是1,那么下一次就得从i=3开始考虑 i+=3; } while(i

上述代码实测18ms,beats 99.20% of cpp submissions。

转载于:https://www.cnblogs.com/chenjx85/p/9160448.html

你可能感兴趣的文章
20180601]函数与标量子查询2.txt
查看>>
交换2个数值的方法
查看>>
“docker-app”实用工具分享,大大提高 Compose 文件复用率
查看>>
位置参数及操作符号
查看>>
伪共享和缓存行填充,Java并发编程还能这么优化!
查看>>
数据库备份DBS商业化发布
查看>>
聊聊3种最常见的响应式设计问题
查看>>
.NET面试题解析(02)-拆箱与装箱
查看>>
剖析管理所有大数据组件的可视化利器:Hue
查看>>
MySQL运维系列 之 如何监控大事务
查看>>
自断前程,未来80%IT工作将实现自动化
查看>>
Spring Boot入门(9)网页版计算器
查看>>
Hibernate之加载策略(延迟加载与即时加载)和抓取策略(fetch)
查看>>
Java 12 将于3月19日发布,8 个最终 JEP 一览
查看>>
对于最近爆火的区块链,投资人怎么看? | 聚焦
查看>>
Redis基于客户端分片的集群案例(待实践)
查看>>
【前端工程师手册】JavaScript作用域拾遗
查看>>
东网科技荣膺2016中国大数据最佳实践奖
查看>>
NVIDIA助力SiemensPLMSoftware“工业4.0创新实验室”,携手推进中国制造创新之路
查看>>
高性能、高可靠分布式文件系统 go-fastdfs v1.2.0 发布
查看>>