Leetcode 213 House Robber II
題目
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 a 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 nums representing the amount of money of each house, return the maximum amount of money you can rob tonight without alerting the police.
Example 1:
Input: nums = [2,3,2]
Output: 3
Explanation: You cannot rob house 1 (money = 2) and then rob house 3 (money = 2), because they are adjacent houses.
Example 2:
Input: nums = [1,2,3,1]
Output: 4
Explanation: Rob house 1 (money = 1) and then rob house 3 (money = 3).
Total amount you can rob = 1 + 3 = 4.
Example 3:
Input: nums = [0]
Output: 0
Constraints:
1 <= nums.length <= 100
0 <= nums[i] <= 1000
思路
因為nums[0]和nums[nums.length-1]不可兼得,所以選擇比較從0到n-1個數和1到n個數的子問題,選擇答案較大的那個為解。對於子問題採用簡單的dp解決,遞推式為 d p [ i ] = m a x ( d p [ i − 1 ] , d p [ i − 2 ] + n u m s [ i ] ) dp[i] = max(dp[i-1],dp[i-2]+nums[i]) dp[i]=max(dp[i−1],dp[i−2]+nums[i])。
程式碼
class Solution {
public int rob(int[] nums) {
if (nums == null || nums.length == 0) return 0;
if (nums.length == 1) return nums[0];
return Math.max(help(nums, 0, nums.length - 1), help(nums, 1, nums.length));
}
public int help(int[] nums, int start, int end) {
int pprev = 0, prev = 0, curr = 0;
for (int i = start; i < end; i++) {
curr = Math.max(pprev + nums[i], prev);
pprev = prev;
prev = curr;
}
return curr;
}
}
相關文章
- Leetcode 198 House RobberLeetCode
- LeetCode 動態規劃 House Robber 習題LeetCode動態規劃
- 337-House Robber III
- leetcode力扣 213. 打家劫舍 IILeetCode力扣
- Day 42 | 198.打家劫舍 、213.打家劫舍II、337.打家劫舍III
- leetcode-90. Subsets IILeetCode
- Leetcode 40 Combination Sum IILeetCode
- LeetCode 1103[分糖果II]LeetCode
- [LeetCode] 210. Course Schedule IILeetCode
- [LeetCode] 305. Number of Islands IILeetCode
- [LeetCode] 212. Word Search IILeetCode
- [Leetcode]253. Meeting Rooms IILeetCodeOOM
- [LeetCode] 2105. Watering Plants IILeetCode
- LeetCode 52. N皇后 IILeetCode
- [leetcode]linked-list-cycle-iiLeetCode
- leetcode 219. Contains Duplicate IILeetCodeAI
- [LeetCode] 910. Smallest Range IILeetCode
- [LeetCode] 45. Jump Game IILeetCodeGAM
- LeetCode-047-全排列 IILeetCode
- Leetcode 137. Single Number IILeetCode
- [LeetCode] 3152. Special Array IILeetCode
- Leetcode 685. Redundant Connection II JavascriptLeetCodeJavaScript
- [LeetCode] 244. Shortest Word Distance IILeetCode
- LeetCode - 113 - 路徑總和 IILeetCode
- leetcode 350. Intersection of Two Arrays IILeetCode
- Leetcode 142. Linked List Cycle IILeetCode
- LeetCode-063-不同路徑IILeetCode
- House Of Force
- The House of Mind
- leetcode:組合總和II(回溯java)LeetCodeJava
- LeetCode題解(0407):接雨水II(Python)LeetCodePython
- [leetcode]remove-duplicates-from-sorted-array-iiLeetCodeREM
- [Leetcode]下一個更大元素IILeetCode
- Leetcode——113. 路徑總和 IILeetCode
- [leetcode 92] 反轉連結串列 IILeetCode
- LeetCode40.組合總和IILeetCode
- leetcode 45. 跳躍遊戲 IILeetCode遊戲
- LeetCode-113-路徑總和 IILeetCode