198. 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 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.

動態(tài)規(guī)劃(dp)里比較容易寫的一題,轉移關系式是:

dp[i]=(nums[i]+dp[i-2])>dp[i-1]?(nums[i]+dp[i-2]):dp[i-1];
class Solution {
    public int rob(int[] nums) {
        if(nums==null||nums.length==0) return 0;
        if(nums.length==1) return nums[0];
        int[] dp = new int[nums.length];
        dp[0]=nums[0];
        dp[1]=nums[1]>nums[0]?nums[1]:nums[0];
        for(int i = 2 ;i<nums.length;i++)
        {
            dp[i]=(nums[i]+dp[i-2])>dp[i-1]?(nums[i]+dp[i-2]):dp[i-1];
        }
        return dp[nums.length-1];
    }
}
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發(fā)布,文章內容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容