标签:www max 情况下 额的 turn ref col 结果 专业
输入: [2,3,2]
输出: 3
解释: 你不能先偷窃 1 号房屋(金额 = 2),然后偷窃 3 号房屋(金额 = 2), 因为他们是相邻的。
输入: [1,2,3,1] 输出: 4 解释: 你可以先偷窃 1 号房屋(金额 = 1),然后偷窃 3 号房屋(金额 = 3)。 偷窃到的最高金额 = 1 + 3 = 4 。
思路:
class Solution { public int rob(int[] nums) { int n = nums.length; if(n ==0) return 0; if(n ==1) return nums[0]; if(n ==2) return (int)Math.max(nums[0],nums[1]); return (int)Math.max( robit(nums,0 ,n-2) , robit(nums,1, n-1) ); } private int robit(int[] nums , int start , int end){ int len = end - start + 1; int[] res = new int[len]; for(int i = len -1; i>= 0 ; i--) for(int j = i+start ; j<len+start ; j++){ res[i] = (int)Math.max(res[i] , nums[j]+(j+2-start<len?res[j+2-start]:0) ); } return res[0]; } }
标签:www max 情况下 额的 turn ref col 结果 专业
原文地址:https://www.cnblogs.com/rainxbow/p/9707594.html