mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<p>小偷又发现了一个新的可行窃的地区。这个地区只有一个入口,我们称之为<meta charset="UTF-8" /> <code>root</code> 。</p>
|
|
|
|
<p>除了<meta charset="UTF-8" /> <code>root</code> 之外,每栋房子有且只有一个“父“房子与之相连。一番侦察之后,聪明的小偷意识到“这个地方的所有房屋的排列类似于一棵二叉树”。 如果 <strong>两个直接相连的房子在同一天晚上被打劫</strong> ,房屋将自动报警。</p>
|
|
|
|
<p>给定二叉树的 <code>root</code> 。返回 <em><strong>在不触动警报的情况下</strong> ,小偷能够盗取的最高金额</em> 。</p>
|
|
|
|
<p> </p>
|
|
|
|
<p><strong>示例 1:</strong></p>
|
|
|
|
<p><img alt="" src="https://assets.leetcode.com/uploads/2021/03/10/rob1-tree.jpg" /></p>
|
|
|
|
<pre>
|
|
<strong>输入: </strong>root = [3,2,3,null,3,null,1]
|
|
<strong>输出:</strong> 7
|
|
<strong>解释:</strong> 小偷一晚能够盗取的最高金额 3 + 3 + 1 = 7</pre>
|
|
|
|
<p><strong>示例 2:</strong></p>
|
|
|
|
<p><img alt="" src="https://assets.leetcode.com/uploads/2021/03/10/rob2-tree.jpg" /></p>
|
|
|
|
<pre>
|
|
<strong>输入: </strong>root = [3,4,5,1,3,null,1]
|
|
<strong>输出:</strong> 9
|
|
<strong>解释:</strong> 小偷一晚能够盗取的最高金额 4 + 5 = 9
|
|
</pre>
|
|
|
|
<p> </p>
|
|
|
|
<p><strong>提示:</strong></p>
|
|
|
|
<p><meta charset="UTF-8" /></p>
|
|
|
|
<ul>
|
|
<li>树的节点数在 <code>[1, 10<sup>4</sup>]</code> 范围内</li>
|
|
<li><code>0 <= Node.val <= 10<sup>4</sup></code></li>
|
|
</ul>
|