您的位置:首页 > 其它

198. House Robber

2016-03-18 21:05 204 查看
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.

Subscribe to see which companies asked this question
动态规划

public class Solution {//动态规划思路都是从后往前推。。。
public int rob(int[] nums) {
int take = 0;
int untake = 0;
int max =0;
for(int i=0 ;i<nums.length;i++){
take=untake+nums[i];
untake=max;
max=take>untake?take:untake;
}
return max;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: