mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
38 lines
2.1 KiB
HTML
38 lines
2.1 KiB
HTML
<p>给你一个下标从 <strong>0</strong> 开始的二维整数数组 <code>flowers</code> ,其中 <code>flowers[i] = [start<sub>i</sub>, end<sub>i</sub>]</code> 表示第 <code>i</code> 朵花的 <strong>花期</strong> 从 <code>start<sub>i</sub></code> 到 <code>end<sub>i</sub></code> (都 <strong>包含</strong>)。同时给你一个下标从 <strong>0</strong> 开始大小为 <code>n</code> 的整数数组 <code>persons</code> ,<code>persons[i]</code> 是第 <code>i</code> 个人来看花的时间。</p>
|
||
|
||
<p>请你返回一个大小为 <code>n</code> 的整数数组<em> </em><code>answer</code> ,其中 <code>answer[i]</code>是第 <code>i</code> 个人到达时在花期内花的 <strong>数目</strong> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<p><img alt="" src="https://assets.leetcode.com/uploads/2022/03/02/ex1new.jpg" style="width: 550px; height: 216px;"></p>
|
||
|
||
<pre><b>输入:</b>flowers = [[1,6],[3,7],[9,12],[4,13]], persons = [2,3,7,11]
|
||
<b>输出:</b>[1,2,2,2]
|
||
<strong>解释:</strong>上图展示了每朵花的花期时间,和每个人的到达时间。
|
||
对每个人,我们返回他们到达时在花期内花的数目。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<p><img alt="" src="https://assets.leetcode.com/uploads/2022/03/02/ex2new.jpg" style="width: 450px; height: 195px;"></p>
|
||
|
||
<pre><b>输入:</b>flowers = [[1,10],[3,3]], persons = [3,3,2]
|
||
<b>输出:</b>[2,2,1]
|
||
<b>解释:</b>上图展示了每朵花的花期时间,和每个人的到达时间。
|
||
对每个人,我们返回他们到达时在花期内花的数目。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= flowers.length <= 5 * 10<sup>4</sup></code></li>
|
||
<li><code>flowers[i].length == 2</code></li>
|
||
<li><code>1 <= start<sub>i</sub> <= end<sub>i</sub> <= 10<sup>9</sup></code></li>
|
||
<li><code>1 <= persons.length <= 5 * 10<sup>4</sup></code></li>
|
||
<li><code>1 <= persons[i] <= 10<sup>9</sup></code></li>
|
||
</ul>
|