Saturday, July 11, 2015

House Robber

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 andit 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 tonightwithout alerting the police.
Have you met this question in a real interview? 
Yes
Example
Given [3, 8, 4], return 8.

Challenge
O(n) time and O(1) memory.

public class Solution {
    /**
     * @param A: An array of non-negative integers.
     * return: The maximum amount of money you can rob tonight
     */
    public long houseRobber(int[] A) {
        // write your code here
        long even = 0, odd = 0;
        for(int i = 0; i < A.length; i++){
            if(i % 2 == 1){
                odd = Math.max(odd + A[i], even);
            } else even = Math.max(even + A[i], odd);
        }
        return Math.max(even, odd);
    }
}

No comments:

Post a Comment