-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path198.打家劫舍.py
63 lines (57 loc) · 1.68 KB
/
198.打家劫舍.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# @lc app=leetcode.cn id=198 lang=python3
#
# [198] 打家劫舍
#
# https://leetcode-cn.com/problems/house-robber/description/
#
# algorithms
# Easy (42.87%)
# Likes: 673
# Dislikes: 0
# Total Accepted: 86.1K
# Total Submissions: 198.1K
# Testcase Example: '[1,2,3,1]'
#
#
# 你是一个专业的小偷,计划偷窃沿街的房屋。每间房内都藏有一定的现金,影响你偷窃的唯一制约因素就是相邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警。
#
# 给定一个代表每个房屋存放金额的非负整数数组,计算你在不触动警报装置的情况下,能够偷窃到的最高金额。
#
# 示例 1:
#
# 输入: [1,2,3,1]
# 输出: 4
# 解释: 偷窃 1 号房屋 (金额 = 1) ,然后偷窃 3 号房屋 (金额 = 3)。
# 偷窃到的最高金额 = 1 + 3 = 4 。
#
# 示例 2:
#
# 输入: [2,7,9,3,1]
# 输出: 12
# 解释: 偷窃 1 号房屋 (金额 = 2), 偷窃 3 号房屋 (金额 = 9),接着偷窃 5 号房屋 (金额 = 1)。
# 偷窃到的最高金额 = 2 + 9 + 1 = 12 。
#
#
#
# @lc code=start
class Solution:
def rob(self, nums: List[int]) -> int:
# 1. 动态规划
# # 1.1 O(N) O(N)
# if not nums:
# return 0
# if len(nums) == 1:
# return nums[0]
# dp = [0] * len(nums)
# dp[0] = nums[0]
# dp[1] = max(nums[0], nums[1])
# for i in range(2, len(nums)):
# dp[i] = max(dp[i-1], nums[i]+ dp[i-2])
# return dp[-1]
# 1.2 滚动数组 O(N) O(1)
a = b = 0
for num in nums:
a, b = b, max(b, num+a)
return b
# @lc code=end