Seawolf 发表于 2020-7-30 12:15:13

Leetcode 198. House Robber

本帖最后由 Seawolf 于 2020-7-30 12:29 编辑

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.



Example 1:

Input: nums =
Output: 4
Explanation: Rob house 1 (money = 1) and then rob house 3 (money = 3).
             Total amount you can rob = 1 + 3 = 4.
Example 2:

Input: nums =
Output: 12
Explanation: Rob house 1 (money = 2), rob house 3 (money = 9) and rob house 5 (money = 1).
             Total amount you can rob = 2 + 9 + 1 = 12.


Constraints:

0 <= nums.length <= 100
0 <= nums <= 400

你是一个专业的小偷,计划偷窃沿街的房屋。每间房内都藏有一定的现金,影响你偷窃的唯一制约因素就是相邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警。

给定一个代表每个房屋存放金额的非负整数数组,计算你 不触动警报装置的情况下 ,一夜之内能够偷窃到的最高金额。


示例 1:

输入:
输出:4
解释:偷窃 1 号房屋 (金额 = 1) ,然后偷窃 3 号房屋 (金额 = 3)。
偷窃到的最高金额 = 1 + 3 = 4 。
示例 2:

输入:
输出:12
解释:偷窃 1 号房屋 (金额 = 2), 偷窃 3 号房屋 (金额 = 9),接着偷窃 5 号房屋 (金额 = 1)。
偷窃到的最高金额 = 2 + 9 + 1 = 12 。


提示:

0 <= nums.length <= 100
0 <= nums <= 400

Solution 1:
class Solution:
    def rob(self, nums: List) -> int:
      steal =
      cooldown =
      res = 0
      for i in range(len(nums)):
            steal = cooldown + nums
            cooldown = max(cooldown, steal)
            res = max(steal, cooldown)
      return res

Solution 2:
class Solution:
    def rob(self, nums: List) -> int:
      dp =
      res = 0
      if len(nums) == 1:
            return nums
      if len(nums) == 2:
            return max(nums)
      for i in range(len(nums)):
            dp = max(dp, nums + dp)
            res = max(res, dp)
      return res
页: [1]
查看完整版本: Leetcode 198. House Robber