198. House Robber
Problem description:
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that 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:1
2
3
4Input: 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 2:
1 | Input: nums = [2,7,9,3,1] |
Solution:
DP solution:
For dp solution, we need to know what is the recursion function in it. As you can see in the example, once you pick ith
house to rob, you must not came from i-1th
house. Therefore, let’s try to think it in this way:
Let us look at the case n = 1
, clearly f(1) = A1
.
Now, let us look at n = 2
, which f(2) = max(A1, A2)
.
For n = 3
, you have basically the following two options:
- Rob the third house, and add its amount to the first house’s amount.
- Do not rob the third house, and stick with the maximum amount of the first two houses.
Clearly, you would want to choose the larger of the two options at each step.
Therefore, we could summarize the formula as following:f(k) = max(f(k – 2) + Ak, f(k – 1))
1 | class Solution: |
1 | //DP |
1 | //odd, even |