[leetcode] 213. House Robber II

网友投稿 625 2022-11-08

[leetcode] 213. House Robber II

[leetcode] 213. House Robber II

Description

You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed. All houses at this place are arranged in a circle. That means the first house is the neighbor of the last one. Meanwhile, 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.

Example 1:

Input: [2,3,2]Output: 3Explanation: You cannot rob house 1 (money = 2) and then rob house 3 (money = 2), because they are adjacent houses.

Example 2:

Input: [1,2,3,1]Output: 4Explanation: Rob house 1 (money = 1) and then rob house 3 (money = 3). Total amount you can rob = 1 + 3 = 4.

分析

题目的意思是:给你一个数组,成环(最后一个数跟第一个数相邻),然后相邻的房间不能抢,只能隔开抢劫,求你能够抢到的最大价值。

现在房子排成了一个圆圈,则如果抢了第一家,就不能抢最后一家,因为首尾相连了,所以第一家和最后一家只能抢其中的一家,或者都不抢。那我们这里变通一下,如果我们把第一家和最后一家分别去掉,各算一遍能抢的最大值,然后比较两个值取其中较大的一个即为所求。dp[i]表示前i个房子,强盗能够抢到的最大值。很容易推出:dp[i]=max(dp[i-2]+nums[i],dp[i-1]);对于每一个位置,有抢与不抢,抢就是dp[i-2]+nums[i],不抢就是:dp[i-1]取最大值作为当前抢到的最大值。

代码

class Solution {public: int rob(vector& nums) { if(nums.size()==0){ return 0; } if(nums.size()==1){ return nums[0]; } return max(rob(nums,0,nums.size()-1),rob(nums,1,nums.size())); } int rob(vector nums,int left,int right){ if(right-left<=1){ return nums[left]; } vector dp(right,0); dp[left]=nums[left]; dp[left+1]=max(nums[left],nums[left+1]); for(int i=left+2;i

参考文献

​​[LeetCode] House Robber II 打家劫舍之二​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:[leetcode] 744. Find Smallest Letter Greater Than Target
下一篇:[leetcode] 955. Delete Columns to Make Sorted II
相关文章

 发表评论

暂时没有评论,来抢沙发吧~