mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
57 lines
1.7 KiB
HTML
57 lines
1.7 KiB
HTML
<p>传送带上的包裹必须在 <code>days</code> 天内从一个港口运送到另一个港口。</p>
|
||
|
||
<p>传送带上的第 <code>i</code> 个包裹的重量为 <code>weights[i]</code>。每一天,我们都会按给出重量(<code>weights</code>)的顺序往传送带上装载包裹。我们装载的重量不会超过船的最大运载重量。</p>
|
||
|
||
<p>返回能在 <code>days</code> 天内将传送带上的所有包裹送达的船的最低运载能力。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>weights = [1,2,3,4,5,6,7,8,9,10], days = 5
|
||
<strong>输出:</strong>15
|
||
<strong>解释:</strong>
|
||
船舶最低载重 15 就能够在 5 天内送达所有包裹,如下所示:
|
||
第 1 天:1, 2, 3, 4, 5
|
||
第 2 天:6, 7
|
||
第 3 天:8
|
||
第 4 天:9
|
||
第 5 天:10
|
||
|
||
请注意,货物必须按照给定的顺序装运,因此使用载重能力为 14 的船舶并将包装分成 (2, 3, 4, 5), (1, 6, 7), (8), (9), (10) 是不允许的。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>weights = [3,2,2,4,1,4], days = 3
|
||
<strong>输出:</strong>6
|
||
<strong>解释:</strong>
|
||
船舶最低载重 6 就能够在 3 天内送达所有包裹,如下所示:
|
||
第 1 天:3, 2
|
||
第 2 天:2, 4
|
||
第 3 天:1, 4
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>weights = [1,2,3,1,1], days = 4
|
||
<strong>输出:</strong>3
|
||
<strong>解释:</strong>
|
||
第 1 天:1
|
||
第 2 天:2
|
||
第 3 天:3
|
||
第 4 天:1, 1
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= days <= weights.length <= 5 * 10<sup>4</sup></code></li>
|
||
<li><code>1 <= weights[i] <= 500</code></li>
|
||
</ul>
|