道路標識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 systems connected and it will automatically contact the police if two adjacent houses were broken into on the same night.
Given an integer array nums representing the amount of money of each house, return the maximum amount of money you can rob tonight without alerting the police.
に答える
この問題は泥棒が盗むことができる最大の金額の問題で、隣の人が盗むことができないという条件が付いています.
したがって,リストを順次検索しながら,そのインデックスの最大値を求めることができる.
DPの問題です.
コード#コード#
class Solution:
def rob(self, nums: List[int]) -> int:
for i in range(2, len(nums)):
if i ==2:
nums[2] += nums[0]
continue
nums[i] += max(nums[i-2], nums[i-3])
return max(nums)
Reference
この問題について(道路標識198.House Robber), 我々は、より多くの情報をここで見つけました https://velog.io/@ddaynew365/리트코드-198.-House-Robberテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol