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.

经典一维DP问题

DP[i] = max(DP[i-1], DP[i-2] + num[i])

public class Solution {
  public int rob(int[] num) {
    if (num.length == 0) {
      return 0;
    }
    if (num.length == 1) {
      return num[0];
    }
    if (num.length == 2) {
      return Math.max(num[0], num[1]);
    }
    int[] dp = new int[num.length];
    dp[0] = num[0];
    dp[1] = Math.max(num[0], num[1]);
    for (int i = 2; i < num.length; i++) {
      dp[i] = Math.max(dp[i-1], dp[i-2] + num[i]);
    }
    return dp[dp.length - 1];
  }
}

更简洁:

public int rob(int[] nums) {
  int a = 0;
  int b = 0;
  for (int n : nums) {
    int m = a + n;
    a = b;
    b = Math.max(m, b);
  }
  return Math.max(a, b);
}

posted on 2015-04-08 06:59  shini  阅读(131)  评论(0编辑  收藏  举报

导航