mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
45 lines
2.4 KiB
HTML
45 lines
2.4 KiB
HTML
|
<p>给你一个下标从 <strong>0</strong> 开始的二维整数数组 <code>events</code> ,其中 <code>events[i] = [startTime<sub>i</sub>, endTime<sub>i</sub>, value<sub>i</sub>]</code> 。第 <code>i</code> 个活动开始于 <code>startTime<sub>i</sub></code> ,结束于 <code>endTime<sub>i</sub></code> ,如果你参加这个活动,那么你可以得到价值 <code>value<sub>i</sub></code> 。你 <strong>最多</strong> 可以参加 <strong>两个时间不重叠</strong> 活动,使得它们的价值之和 <strong>最大</strong> 。</p>
|
|||
|
|
|||
|
<p>请你返回价值之和的 <strong>最大值</strong> 。</p>
|
|||
|
|
|||
|
<p>注意,活动的开始时间和结束时间是 <strong>包括</strong> 在活动时间内的,也就是说,你不能参加两个活动且它们之一的开始时间等于另一个活动的结束时间。更具体的,如果你参加一个活动,且结束时间为 <code>t</code> ,那么下一个活动必须在 <code>t + 1</code> 或之后的时间开始。</p>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>示例 1:</strong></p>
|
|||
|
|
|||
|
<p><img alt="" src="https://assets.leetcode.com/uploads/2021/09/21/picture5.png" style="width: 400px; height: 75px;"></p>
|
|||
|
|
|||
|
<pre><b>输入:</b>events = [[1,3,2],[4,5,2],[2,4,3]]
|
|||
|
<b>输出:</b>4
|
|||
|
<strong>解释:</strong>选择绿色的活动 0 和 1 ,价值之和为 2 + 2 = 4 。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 2:</strong></p>
|
|||
|
|
|||
|
<p><img alt="Example 1 Diagram" src="https://assets.leetcode.com/uploads/2021/09/21/picture1.png" style="width: 400px; height: 77px;"></p>
|
|||
|
|
|||
|
<pre><b>输入:</b>events = [[1,3,2],[4,5,2],[1,5,5]]
|
|||
|
<b>输出:</b>5
|
|||
|
<strong>解释:</strong>选择活动 2 ,价值和为 5 。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 3:</strong></p>
|
|||
|
|
|||
|
<p><img alt="" src="https://assets.leetcode.com/uploads/2021/09/21/picture3.png" style="width: 400px; height: 66px;"></p>
|
|||
|
|
|||
|
<pre><b>输入:</b>events = [[1,5,3],[1,5,1],[6,6,5]]
|
|||
|
<b>输出:</b>8
|
|||
|
<strong>解释:</strong>选择活动 0 和 2 ,价值之和为 3 + 5 = 8 。</pre>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>提示:</strong></p>
|
|||
|
|
|||
|
<ul>
|
|||
|
<li><code>2 <= events.length <= 10<sup>5</sup></code></li>
|
|||
|
<li><code>events[i].length == 3</code></li>
|
|||
|
<li><code>1 <= startTime<sub>i</sub> <= endTime<sub>i</sub> <= 10<sup>9</sup></code></li>
|
|||
|
<li><code>1 <= value<sub>i</sub> <= 10<sup>6</sup></code></li>
|
|||
|
</ul>
|