LeetCode——House Robber

来源:互联网 发布:魔方秀软件下载 编辑:程序博客网 时间:2024/05/18 13:10

题目:
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.

解答:

class Solution {public:    int rob(vector<int>& nums) {        if (nums.size() <= 0) {            return 0;        }         else if (nums.size() == 1) {            return nums[0];        }        int notHasLast = nums[0];        int hasLast = nums[1];        for (int i = 2; i <= nums.size() - 1; ++i) {            int origNotHasLast = notHasLast;            notHasLast += nums[i];            int tmp = notHasLast;            notHasLast = hasLast > origNotHasLast ? hasLast : origNotHasLast;            hasLast = tmp;        }        return hasLast > notHasLast ? hasLast : notHasLast;    }};
0 0
原创粉丝点击