您的位置:首页 > 其它

LEETCODE--House Robber

2016-01-31 21:58 429 查看
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) {
int length = nums.size();
if(length == 0){
return NULL;
}
int arr[length];
arr[0] = nums[0];
arr[1] = max(nums[0], nums[1]);
for(int i = 2; i < length; i++){
arr[i] = max((nums[i]+arr[i-2]), arr[i-1]);
}
return arr[length-1];
}
};


“`
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: