码迷,mamicode.com
首页 > 其他好文 > 详细

*House Robber II

时间:2015-07-15 12:49:39      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

题目:

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.

 

思路:

This is an extension of House Robber. There are two cases here 1) 1st element is included and last is not included 2) 1st is not included and last is included. Therefore, we can use the similar dynamic programming approach to scan the array twice and get the larger value.

 

代码:

 1 public int rob(int[] nums) {
 2     if(nums==null||nums.length==0)
 3         return 0;
 4  
 5     int n = nums.length;
 6  
 7     if(n==1){
 8         return nums[0];
 9     }    
10     if(n==2){
11         return Math.max(nums[1], nums[0]);
12     }
13  
14     //include 1st element, and not last element
15     int[] dp = new int[n+1];
16     dp[0]=0;
17     dp[1]=nums[0];
18  
19     for(int i=2; i<n; i++){
20         dp[i] = Math.max(dp[i-1], dp[i-2]+nums[i-1]);
21     }
22  
23     //not include frist element, and include last element
24     int[] dr = new int[n+1];
25     dr[0]=0;
26     dr[1]=nums[1];
27  
28     for(int i=2; i<n; i++){
29         dr[i] = Math.max(dr[i-1], dr[i-2]+nums[i]);
30     }
31  
32     return Math.max(dp[n-1], dr[n-1]);
33 }

 

运行结果:

输入nums={1,4,5,2,9,8}

 

1. 包括1st,不包括last one

dp[0]=0

dp[1]=nums[0]=1

dp[2]=4,   (dp[1], dp[0]+nums[1])

dp[3]=6,   (dp[2], dp[1]+nums[2])

dp[4]=6,   (dp[3], dp[2]+nums[3])

dp[5]=15, (dp[4], dp[3]+nums[4])

 

2. 不包括1st,包括last one

dr[0]=0

dr[1]=4

dr[2]=5,   (dr[1], dr[0]+nums[2])

dr[3]=6,   (dr[2], dr[1]+nums[3])

dr[4]=14, (dr[3], dr[2]+nums[4])

dr[5]=14, (dr[4], dr[3]+nums[5])

 

 

Reference: http://www.programcreek.com/2014/05/leetcode-house-robber-ii-java/

 

*House Robber II

标签:

原文地址:http://www.cnblogs.com/hygeia/p/4647856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!