代码随想录算法训练营第38天|509. 斐波那契数 70. 爬楼梯 746. 使用最小花费爬楼梯

文章通过代码随想录的视频讲解,展示了如何使用动态规划解决斐波那契数列和爬楼梯问题。在斐波那契数问题中,通过初始化dp数组并迭代计算每个位置的值。在爬楼梯问题中,同样利用dp数组,考虑每一步可以从上两步到达,计算最小成本。在746题中,增加了成本因素,选择成本最低的路径到达顶部。
摘要由CSDN通过智能技术生成
509. 斐波那契数

代码随想录

视频:手把手带你入门动态规划 | 对应力扣(leetcode)题号:509.斐波那契数_哔哩哔哩_bilibili

class Solution(object):
    def fib(self, n):
        """
        :type n: int
        :rtype: int
        """
        # Corner Case
        if n == 0:
            return 0
        # set up dp table 
        dp = [0] * (n + 1)
        # intialize 
        dp[0] = 0
        dp[1] = 1
        # loop from the index 2 to n
        for i in range(2, n + 1):
            # recursion rule
            dp[i] = dp[i - 1] + dp[i - 2]
        # return 
        return dp[n]

70. 爬楼梯 

代码随想录

视频:带你学透动态规划-爬楼梯(对应力扣70.爬楼梯)| 动态规划经典入门题目_哔哩哔哩_bilibili

class Solution(object):
    def climbStairs(self, n):
        """
        :type n: int
        :rtype: int
        """
        #set up dp
        dp=[0]*(n+1)
        #as long as dp[1]=1 dp[2]=2
        dp[0]=1
        dp[1]=1
        #loop for every step of dp
        for i in range(2, n+1):
            # the ith dp is the sum of i-1 and i-2 dp because both of which can
            # reach to i in one or two steps
            dp[i]=dp[i-2]+dp[i-1]
        return dp[n]
        

746. 使用最小花费爬楼梯 

代码随想录

视频讲解:动态规划开更了!| LeetCode:746. 使用最小花费爬楼梯_哔哩哔哩_bilibili

class Solution(object):
    def minCostClimbingStairs(self, cost):
        """
        :type cost: List[int]
        :rtype: int
        """
        dp=[0]*(len(cost)+1)
        for i in range(2,len(cost)+1):
            # select the min of cost reaching i from i-1 and the cost reaching 
            #i from i-2
            dp[i]=min(dp[i-1]+cost[i-1],dp[i-2]+cost[i-2])
        #return the cost of reaching top
        return dp[-1]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值