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.

思路:

因为两个相邻的房子不能同时被偷,所以当偷奇数的房子就不能偷偶数的房子,所以定义两个变量,用a表示偶数,b表示奇数。这样把数组中的数按照奇偶来区分,这样也可以防止两个相邻的房子都被偷。


代码:

class Solution {
public:
    int rob(vector<int>& nums) {
        int size = nums.size();
        int a= 0;
        int b = 0;
        for(int i = 0;i<size;i++)
        {
            if(i%2 == 0)
            {
                a = max(a+nums[i], b); //来判断nums[i]是否偷. 若是b大,则a中不包含nums[i],;若是b较小,则把nums[i]加到a中
            }
            else
            {
                b = max(a, b+nums[i]);  //来判断nums[i]是否偷.和上面类似。
            }
        }
        return max(a,b);
    }
    int max(int m, int n)   //判断n和m哪个较大。
    {
        int result = m;
        if(n>m) result = n;
        return result;
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值