Leetcode 337. 打家劫舍 III 树形dp

用f(root)表示从root节点出发能盗取的最高金额

f(root) = max(f(root->left)+f(root->right),  root->val +  f(root->left->left)+f(root->left->right) + f(root->right->left) + f(root->right->right))

如果直接这样搜索,为有大量的重复搜索,所以要用hashmap记录状态
 

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    unordered_map<TreeNode*,int> hashmap;
    int rob(TreeNode* root) {
        // rob(root) 表示从根节点出发的最高金额
        if(root==NULL) return 0;
        if(hashmap.count(root)) return hashmap[root];
        int money = root->val;
        if(root->left){
            money += rob(root->left->left)+rob(root->left->right);
        }
        if(root->right){
            money += rob(root->right->right)+rob(root->right->left);
        }
        return max(money,rob(root->left)+rob(root->right));
    }
};

记忆话优化

class Solution {
public:
    unordered_map<TreeNode*,int> hashmap;
    int rob(TreeNode* root) {
        // rob(root) 表示从根节点出发的最高金额
        if(root==NULL) return 0;
        if(hashmap.count(root)) return hashmap[root];
        int money = root->val;
        if(root->left){
            money += rob(root->left->left)+rob(root->left->right);
        }
        if(root->right){
            money += rob(root->right->right)+rob(root->right->left);
        }
        int val = max(money,rob(root->left)+rob(root->right));
        hashmap[root] = val;
        return val;
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值