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 }
  • 相关阅读:
    使用xfire
    db2 存储过程编写定义
    mac下使用eclipse的svn报错问题

    nsis打包过程
    mac快捷键以及增加桌面
    struts2 无法访问static目录下的内容的解决办法
    linux下安装db2
    ORACLE01034错误解决
    cannot restore segment prot after reloc: Permission denied
  • 原文地址:https://www.cnblogs.com/guoguolan/p/5450766.html
Copyright © 2011-2022 走看看