LeetCode-198. 打家劫舍

LeetCode-198. 打家劫舍

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

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

示例 1:

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

代码

class Solution {
public:
    int rob(vector<int>& nums) {
        // int n = nums.size();
        // vector> f(n+1,vector(2));//前i个房间偷与不偷后的金额
        // int i,j;
        // for(i=1;i<=n;i++){
        //     f[i][0] = max(f[i-1][0],f[i-1][1]);
        //     f[i][1] = f[i-1][0]+nums[i-1];
        // }
        // return max(f[n][0],f[n][1]);

        /*空间优化版*/
        int n = nums.size();
        vector<vector<int>> f(2,vector<int>(2));//前i个房间偷与不偷后的金额
        int i,j;
        int pold,pnew=0;
        for(i=1;i<=n;i++){
            pold = pnew;
            pnew = 1-pnew;
            f[pnew][0] = max(f[pold][0],f[pold][1]);
            f[pnew][1] = f[pold][0]+nums[i-1];
        }
        return max(f[pnew][0],f[pnew][1]);
    }
};

执行结果:
通过

执行用时:
0 ms, 在所有 C++ 提交中击败了100.00%的用户
内存消耗:
7.4 MB, 在所有 C++ 提交中击败了88.64%的用户
通过测试用例:
68 / 68

你可能感兴趣的:(LeetCode刷题,c++,算法,leetcode,动态规划)