首页 > 学院 > 开发设计 > 正文

198. House Robber

2019-11-08 02:37:29
字体:
来源:转载
供稿:网友

题目

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.

Credits: Special thanks to @ifanchu for adding this problem and creating all test cases. Also thanks to @ts for adding additional test cases.


思路

递归遍历就行了,比较简单


代码

int getMax(int a,int b){ return a > b?a:b;}class Solution {public: int rob(vector<int>& nums) { int length = nums.size(); if(length == 0) { return 0; } if(length == 1) { return nums[0]; } int count[length] = {0}; count[0] = nums[0]; count[1] = getMax(nums[0],nums[1]); for(int i = 2;i < length;i++) { count[i] = getMax(count[i-2] + nums[i],count[i-1]); } return count[length - 1]; }};
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表