1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 19:18:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/算法题(国内版)/problem (Chinese)/跳水板 [diving-board-lcci].html

21 lines
787 B
HTML
Raw Normal View History

2022-03-27 20:38:29 +08:00
<p>你正在使用一堆木板建造跳水板。有两种类型的木板,其中长度较短的木板长度为<code>shorter</code>,长度较长的木板长度为<code>longer</code>。你必须正好使用<code>k</code>块木板。编写一个方法,生成跳水板所有可能的长度。</p>
<p>返回的长度需要从小到大排列。</p>
<p><strong>示例 1</strong></p>
<pre><code><strong>输入:</strong>
shorter = 1
longer = 2
k = 3
<strong>输出:</strong> [3,4,5,6]
<strong>解释:</strong>
可以使用 3 次 shorter得到结果 3使用 2 次 shorter 和 1 次 longer得到结果 4 。以此类推,得到最终结果。</code></pre>
<p><strong>提示:</strong></p>
<ul>
<li>0 &lt; shorter &lt;= longer</li>
<li>0 &lt;= k &lt;= 100000</li>
</ul>