首页 > 代码库 > 213. House Robber II
213. House Robber II
Note: This is an extension of House Robber.
After robbing those houses on that street, the thief has found himself a new place for his thievery so that he will not get too much attention. This time, all houses at this place are arranged in a circle. That means the first house is the neighbor of the last one. Meanwhile, the security system for these houses remain the same as for those in the previous street.
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 @Freezen for adding this problem and creating all test cases.
public class Solution { public int rob(int[] nums) { //偷最后一家和不偷最后一家 if(nums.length == 0) return 0; if(nums.length == 1) return nums[0]; int n = nums.length; int[] dp1 = new int[n]; int[] dp2 = new int[n]; dp1[0] = nums[0]; dp1[1] = Math.max(nums[1], nums[0]); for(int i = 2 ; i < n-1 ; i++){ dp1[i] = Math.max(dp1[i-1] , dp1[i-2] + nums[i]); } dp2[n-1] = nums[n-1]; dp2[n-2] = Math.max(nums[n-1], nums[n-2]); for(int i = n-3 ; i > 0 ; i--){ dp2[i] = Math.max(dp2[i+1] , dp2[i+2] + nums[i]); } return Math.max(dp2[1] , dp1[n-2]); } }
213. House Robber II
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。