zoukankan      html  css  js  c++  java
  • 198. House Robber Java Solutions

    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.

    Credits:
    Special thanks to @ifanchu for adding this problem and creating all test cases. Also thanks to @ts for adding additional test cases.

    Subscribe to see which companies asked this question

    采用动态递归思想,创建一个结果数组res,每个下标i取到的最大值是:

     Math.max(res[i-2] + nums[i], res[i-1])

    按照这个递推公式,res[res.length-1] 即为所求.

     1 public class Solution {
     2     public int rob(int[] nums) {
     3         if(null == nums || nums.length == 0) return 0;
     4         if(nums.length == 1) return nums[0];
     5         //if(nums.length == 2) return nums[0] > nums[1] ? nums[0] : nums[1];
     6         int[] res = new int[nums.length];
     7         
     8         res[0] = nums[0];
     9         res[1] = Math.max(nums[0] , nums[1]);
    10         for(int i = 2;i < res.length; i++){
    11             res[i] = Math.max(res[i-2]+nums[i],res[i-1]);
    12         }
    13         return res[res.length-1];
    14     }
    15 }
  • 相关阅读:
    线段树----hdoj 1754 I here it
    树状数组----poj 2352 stars
    莫队算法
    枚举+深搜----poj 3279 Fliptile
    java 10 -09的作业
    java 09 06 thread-同步代码块-同步方法
    java09-05 join_daemon
    java09 02 Thread-yield 放弃
    java 07 jar
    java 08 作业
  • 原文地址:https://www.cnblogs.com/guoguolan/p/5450766.html
Copyright © 2011-2022 走看看