Class Solution
-
- All Implemented Interfaces:
public final class Solution
2251 - Number of Flowers in Full Bloom\.
Hard
You are given a 0-indexed 2D integer array
flowers
, where <code>flowersi = start<sub>i</sub>, end<sub>i</sub></code> means the <code>i<sup>th</sup></code> flower will be in full bloom from <code>start<sub>i</sub></code> to <code>end<sub>i</sub></code> ( inclusive ). You are also given a 0-indexed integer arraypersons
of sizen
, wherepersons[i]
is the time that the <code>i<sup>th</sup></code> person will arrive to see the flowers.Return an integer array
answer
of sizen
, whereanswer[i]
is the number of flowers that are in full bloom when the <code>i<sup>th</sup></code> person arrives.Example 1:
Input: flowers = \[\[1,6],3,7,9,12,4,13], persons = 2,3,7,11
Output: 1,2,2,2
Explanation: The figure above shows the times when the flowers are in full bloom and when the people arrive. For each person, we return the number of flowers in full bloom during their arrival.
Example 2:
Input: flowers = \[\[1,10],3,3], persons = 3,3,2
Output: 2,2,1
Explanation: The figure above shows the times when the flowers are in full bloom and when the people arrive. For each person, we return the number of flowers in full bloom during their arrival.
Constraints:
<code>1 <= flowers.length <= 5 * 10<sup>4</sup></code>
flowers[i].length == 2
<code>1 <= start<sub>i</sub><= end<sub>i</sub><= 10<sup>9</sup></code>
<code>1 <= persons.length <= 5 * 10<sup>4</sup></code>
<code>1 <= personsi<= 10<sup>9</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntArray
fullBloomFlowers(Array<IntArray> flowers, IntArray persons)
-
-
Method Detail
-
fullBloomFlowers
final IntArray fullBloomFlowers(Array<IntArray> flowers, IntArray persons)
-
-
-
-