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 }
  • 相关阅读:
    MMA7660
    使用外设需要做的事情
    BH1750
    English
    2016年学习计划
    博客园
    TIM
    USART
    swift与oc的混合编程
    SVN工具如何创建分支和合并分支的
  • 原文地址:https://www.cnblogs.com/lishiblog/p/5725884.html
Copyright © 2011-2022 走看看