1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/最高的广告牌 [tallest-billboard].html
2022-03-29 12:43:11 +08:00

40 lines
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>你正在安装一个广告牌,并希望它高度最大。这块广告牌将有两个钢制支架,两边各一个。每个钢支架的高度必须相等。</p>
<p>你有一堆可以焊接在一起的钢筋 <code>rods</code>。举个例子,如果钢筋的长度为 <code>1</code><code>2</code><code>3</code>,则可以将它们焊接在一起形成长度为 <code>6</code>&nbsp;的支架。</p>
<p>返回 <em>广告牌的最大可能安装高度</em> 。如果没法安装广告牌,请返回 <code>0</code>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>[1,2,3,6]
<strong>输出:</strong>6
<strong>解释:</strong>我们有两个不相交的子集 {1,2,3} 和 {6},它们具有相同的和 sum = 6。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>[1,2,3,4,5,6]
<strong>输出:</strong>10
<strong>解释:</strong>我们有两个不相交的子集 {2,3,5} 和 {4,6},它们具有相同的和 sum = 10。</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>[1,2]
<strong>输出:</strong>0
<strong>解释:</strong>没法安装广告牌,所以返回 0。</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ol>
<li><code>0 &lt;= rods.length &lt;= 20</code></li>
<li><code>1 &lt;= rods[i] &lt;= 1000</code></li>
<li><code>sum(rods[i]) &lt;= 5000</code></li>
</ol>