动态规划解337. House Robber III

题目

The thief has found himself a new place for his thievery again. There is only one entrance to this area, called the “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 forms a binary tree”. It will automatically contact the police if two directly-linked houses were broken into on the same night.

Determine the maximum amount of money the thief can rob tonight without alerting the police.

Example 1:

 3
/ \
2  3
\   \ 
 3   1

Maximum amount of money the thief can rob = 3 + 3 + 1 = 7.

Example 2:

  3
 / \
 4   5
/ \  \
1 3   1

Maximum amount of money the thief can rob = 4 + 5 = 9.

题意分析

一个盗贼进入一个居民区,它发现只有一个根可以进入该居民区。除了这个根,其他的居民家有且只有一个连着它的父亲居民家。盗贼经过侦查之后,发现这个居民区的组成跟二叉树一样,并且如果两个直连的居民家在同一晚上被偷,则会引起警铃,现在要求盗贼能偷的最大价值

思路分析

这是一道动态规划题目,对于每个节点,用2个变量去表示,分别为result[0],result[1],result[0]表示不选择当前节点子树的和,result[1]表示选择当前节点子树的和,用leftvlaue表示当前节点左子树的节点变量,用rightvalue表示当前节点右子树的节点变量,则result[0]=max(leftvalue[0], leftvalue[1]) + max(rightvalue[0], rightvalue[1]), result[1]= root->val + leftvalue[1], + rightvalue[1],这个过程通过dfs深度递归完成

AC代码

class Solution {
public:
    vector<int> dfs(TreeNode* subroot) {
        vector<int> result(2, 0);
        if (subroot == nullptr) return result;
        vector<int> leftvalue = dfs(subroot->left);
        vector<int> rightvalue = dfs(subroot->right);
        result[0] = max(leftvalue[0], leftvalue[1]) + max(rightvalue[0], rightvalue[1]);
        result[1] = subroot->val + leftvalue[0] + rightvalue[0];
        return result;
    }
    int rob(TreeNode* root) {
        vector<int> res = dfs(root);
        return max(res[0], res[1]);
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值