1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
int robb(TreeNode* root, bool st) {
if (root == nullptr) return 0;
if (st) {
return root->val + robb(root->left, false) + robb(root->right, false);
} else {
int left_sum = max(robb(root->left, true), robb(root->left, false));
int right_sum = max(robb(root->right, true), robb(root->right, false));
return left_sum + right_sum;
}
}
int rob(TreeNode* root) {
return max(robb(root, true), robb(root, false));
}
};
|