Skip to content

Multiple States II

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.

https://leetcode.com/problems/house-robber/description/

Example I:

Input: [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 II:

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

Questions

Transform Function

rob[i] = notrob[i - 1] + house[i]
notrob = Math.max(rob[i - 1], notrob[i - 1])

return Math.max(rob[n], notrob[n])

Solution I

class Solution {
    public int rob(int[] nums) {
        if(nums == null || nums.length == 0) return 0;
        int n = nums.length;
        int[][] dp = new int[n][2];
        dp[0][0] = nums[0];
        for(int i = 1; i < n; i++) {
            dp[i][0] = dp[i - 1][1] + nums[i];
            dp[i][1] = Math.max(dp[i - 1][0], dp[i - 1][1]);
        }
        return Math.max(dp[n - 1][0], dp[n - 1][1]);
    }
}

Solution II

class Solution {
    public int rob(int[] nums) {
        if(nums == null || nums.length == 0) return 0;
        int rob = 0;
        int notrob = 0;
        for(int num : nums) {
            int prev_rob = rob;
            rob = notrob + num;
            notrob = Math.max(prev_rob, notrob);
        }
        return Math.max(rob, notrob);
    }
}