Leetcode#337. House Robber III
Problem
The thief has found himself a new place for his thievery again. There is only one entrance to this area, called root
.
Besides the root
, each house has one and only one parent house. After a tour, the smart thief realized that all houses in this place form a binary tree. It will automatically contact the police if two directly-linked houses were broken into on the same night.
Given the root
of the binary tree, return the maximum amount of money the thief can rob without alerting the police.
Example 1:
!https://assets.leetcode.com/uploads/2021/03/10/rob1-tree.jpg
1 | Input: root = [3,2,3,null,3,null,1] |
Example 2:
!https://assets.leetcode.com/uploads/2021/03/10/rob2-tree.jpg
1 | Input: root = [3,4,5,1,3,null,1] |
Constraints:
- The number of nodes in the tree is in the range
[1, 104]
. 0 <= Node.val <= 104
Solve
Time Limit Exceeded
1 | # Definition for a binary tree node. |
改成這樣就沒問題,原先單純沒有把postorder格式寫好,導致會一直重複運算
1 | # Definition for a binary tree node. |
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Imisky!
評論