码迷,mamicode.com
首页 > 编程语言 > 详细

LeetCode with Python -> Dynamic Programming

时间:2018-01-08 22:30:02      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:ram   etc   automatic   connected   creat   addition   elf   ted   rom   

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.

Credits:
Special thanks to @ifanchu for adding this problem and creating all test cases. Also thanks to @ts for adding additional test cases.

class Solution(object):
    def rob(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        last, now = 0,0
        for i in nums:
            last, now= now, max(last+i, now)
        return now
    
    # redo this later
    # n,m = 1,2
    # n,m = n+m, n     variables on the left side present the original ones
    # n==3,m==1

 

LeetCode with Python -> Dynamic Programming

标签:ram   etc   automatic   connected   creat   addition   elf   ted   rom   

原文地址:https://www.cnblogs.com/DianeSoHungry/p/8245024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!