zoukankan      html  css  js  c++  java
  • LeetCode-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.

    Analysis:

    DP problem. The maximum profit when robbing to the ith house, sum[i] = max(sum[i-1],sum[i-2]+nums[i]);

    Solution:

     1 public class Solution {
     2     public int rob(int[] nums) {
     3         if (nums.length==0) return 0;
     4         if (nums.length==1) return nums[0];
     5         
     6         int[] sum = new int[nums.length];
     7         sum[0] = nums[0];
     8         sum[1] = Math.max(nums[0],nums[1]);
     9         
    10         for (int i=2;i<nums.length;i++)
    11             sum[i] = Math.max(sum[i-1],sum[i-2]+nums[i]);
    12             
    13         return sum[nums.length-1];
    14     }
    15 }
  • 相关阅读:
    Java面向对象编程 -1.3
    Java面向对象编程 -1.2
    Java面向对象编程 -1
    Java基础 -5.3
    Java基础 -5.2
    oracle 新建用户
    js密码的匹配正则
    oracle导入和导出和授权
    oracle存储过程语法
    java.lang.NumberFormatException: For input string: "26.0"
  • 原文地址:https://www.cnblogs.com/lishiblog/p/5725884.html
Copyright © 2011-2022 走看看