House Robber

Question:

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.

code:

public class Solution {

    public static int[] result = null;
    public int solve(int index,int[] nums){
        if(index<0){
            return 0;
        }
        if(result[index] > 0){
            return result[index];
        }

        return  result[index] = Math.max(nums[index]+solve(index-2,nums),solve(index-1,nums));
    }
    public int rob(int[] nums) {
        result = new int[nums.length] ;

        for(int i = 0;i1;
        }
        return solve(nums.length-1,nums);
    }
}

你可能感兴趣的:(LeetCode)