leetcode198-打家劫舍

你是一个专业的小偷,计划偷窃沿街的房屋。每间房内都藏有一定的现金,影响你偷窃的唯一制约因素就是相邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警。

给定一个代表每个房屋存放金额的非负整数数组,计算你在不触动警报装置的情况下,能够偷窃到的最高金额。

示例 1:

输入: [1,2,3,1]
输出: 4
解释: 偷窃 1 号房屋 (金额 = 1) ,然后偷窃 3 号房屋 (金额 = 3)。
偷窃到的最高金额 = 1 + 3 = 4 。
示例 2:

输入: [2,7,9,3,1]
输出: 12
解释: 偷窃 1 号房屋 (金额 = 2), 偷窃 3 号房屋 (金额 = 9),接着偷窃 5 号房屋 (金额 = 1)。
偷窃到的最高金额 = 2 + 9 + 1 = 12 。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/house-robber
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
public:
    int rob(vector<int>& nums) {
        int length = nums.size();
        vector<int> temp(nums.size(),-1);
        return solve3(length-1,nums,temp);
    }


private:
    //暴力搜索,时间复杂度O(2^n)
    int solve1(int indx,vector<int>& nums){
        int max = 0;
        int temp1,temp2;
        if(indx < 0)
            return 0;
        else{
            temp1 = nums[indx] + solve1(indx-2,nums);
            temp2 = solve1(indx-1,nums);
            max = temp1 >= temp2 ? temp1 : temp2;
            return max;
        }
    }
    //动态规划解法,递归求解
    int solve2(int indx,vector<int>& nums,vector<int>& temp){
        int max = 0;
        int temp1,temp2;
        if(indx < 0)
        {
            return 0;
        }
        if(temp[indx] > 0){
            return temp[indx];
        }
        else{
            temp1 = nums[indx] + solve2(indx-2,nums,temp);
            temp2 = solve2(indx-1,nums,temp);
            max = temp1 >= temp2 ? temp1 : temp2;
            temp[indx] = max;
            return max;
        }
    }
    //动态规划法,递推求解
    int solve3(int indx,vector<int>& nums,vector<int>& temp){
        if(indx < 0)
            return 0;
        if(indx == 0)
            return nums[0];
        if(indx == 1)
            return nums[0] > nums[1] ? nums[0] : nums[1];
        if(indx >= 2){
            temp[0] = nums[0];
            temp[1] = nums[0] > nums[1] ? nums[0] : nums[1];
            for(int i = 2;i <= indx;++i){
                temp[i] = (nums[i] + temp[i-2]) > temp[i-1] ? (nums[i] + temp[i-2]) : temp[i-1];
            }
            
        }
        return temp[indx];
    }

};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值