Fork me on GitHub

[leetcode-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.

思路:

Basically you want to compare which one is bigger between 1) you + sum of your grandchildren and 2) sum of your children. 

用l表示下一层左子树的值,r表示下一层右子树的值。那么对于root的值只需比较

max(l + r, root->val + ll + lr + rl + rr)即可。
复制代码
int rob3(TreeNode* root, int& l, int& r)
    {
        if (root == NULL)return 0;
        int ll = 0, lr = 0, rl = 0, rr = 0;
        l = rob3(root->left, ll, lr);
        r = rob3(root->right, rl, rr);
        return max(l + r, root->val + ll + lr + rl + rr);
    }
    int rob3(TreeNode* root)
    {
        int l, r;
        return rob3(root, l, r);
    }
复制代码

参考:

https://discuss.leetcode.com/topic/40847/simple-c-solution

posted @   hellowOOOrld  阅读(172)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示