198. House Robber(动态规划--房屋强盗)

题目

You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent houses have security system connected and it will automatically contact the police if two adjacent houses were broken into on the same night.

Given a list of non-negative integers representing the amount of money of each house, determine the maximum amount of money you can rob tonight without alerting the police.

题意

你是一个专业的强盗,你计划在一条路上抢劫房屋。每一个房屋藏着一些钱。因为相邻房屋之间有安全系统相连,这个安全系统又与警察相连,所以你不能抢劫相邻的房屋在同一个晚上。
给你一列非负整数代表每一个房屋的藏的钱数,求出在没有惊扰警察的情况下,能抢劫到的最多的钱数。

题解

不能取相邻元素,动态规划的思想是将大问题转换为逐个的小问题。

假设:

1. 只有1个房屋nums[0],最大收益为dp[0] = nums[0];
2. 有2个房屋nums[0], nums[1], 不能同时取,最大收益为dp[1] = max(nums[0], nums[1]);
3. 有3个房屋,有两种取法,取nums[1],或者取nums[0]和nums[2].即 dp[2] = max(nums[1], nums[0] + nums[2]);
4. 故可推测出动态转换方程为:dp[i] = max(nums[i] + dp[i-2], dp[i-1]);

C++代码
class Solution {
public:
    int rob(vector<int>& nums) {
        int len = nums.size();
        int dp[len+5] = {0};
        if(len==0)
            return 0;
        if(len==1)
            return nums[0];
        if(len==2)
            return max(nums[0], nums[1]);

        dp[0] = nums[0];
        dp[1] = max(nums[0], nums[1]);
        for(int i=2; i<len; i++)
        {
            dp[i] = max(nums[i] + dp[i-2], dp[i-1]);
        }
        return dp[len-1];
    }
};
python代码
class Solution(object):
    def rob(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        n =  len(nums);
        dp = [0 for x in range(n)];
        if n==0:
            return 0
        if n==1:
            return nums[0]
        if n==2:
            return max(nums[0], nums[1])
        dp[0] = nums[0]
        dp[1] = max(nums[0], nums[1])
        for i in range(2, n):
            dp[i] = max(nums[i] + dp[i-2], dp[i-1])
        return dp[n-1]
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值