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

198. House Robber

2019-11-06 06:02:40
字体:
来源:转载
供稿:网友

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) {        if (nums.length == 0)			return 0;		if (nums.length == 1)			return nums[0];		if (nums.length == 2)			return nums[0] > nums[1] ? nums[0] : nums[1];		int max1 = 0;		int max2 = nums[0] > nums[1] ? nums[0] : nums[1];		int pre1 = nums[0];		int pre2 = nums[1];		for (int i = 2; i < nums.length; ++i) {			max1 = max1 > pre1 ? max1 : pre1;			int now = nums[i] + max1;			max2 = max2 > now ? max2 : now;			pre1 = pre2;			pre2 = now;		}		return max2;    }}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表