605 Can Place Flowers
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 numbern, return ifnnew flowers can be planted in it without violating the no-adjacent-flowers rule.
Example 1:
Example 2:
Note:
The input array won't violate no-adjacent-flowers rule.
The input array size is in the range of [1, 20000].
n is a non-negative integer which won't exceed the input array size.
这题一看,只想到了brute force,然后一边check一遍place flower。然后发现边界好tricky。在想是不是有什么gready的最优解法。然而是没有的。答案也是这样,就是写得好看点而已。都是T:O(N),S:O(1)
Last updated
Was this helpful?