Problem #12 [Hard]

文章讨论了如何使用动态规划算法解决阶梯问题,给出了两种情况:一种是每次只能爬1或2级台阶,另一种是可以爬取给定的一组正整数。通过计算到达第n层楼梯的不同路径数,展示了递推公式dp[i]=dp[i-1]+dp[i-2]的应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

This problem was asked by Amazon.

There exists a staircase with N steps, and you can climb up either 1 or 2 steps at a time. Given N, write a function that returns the number of unique ways you can climb the staircase. The order of the steps matters.

For example, if N is 4, then there are 5 unique ways:

1, 1, 1, 1
2, 1, 1
1, 2, 1
1, 1, 2
2, 2
What if, instead of being able to climb 1 or 2 steps at a time, you could climb any number from a set of positive integers X? For example, if X = {1, 3, 5}, you could climb 1, 3, or 5 steps at a time.
典型的动态规划。首先确定dp数组定义,即爬i层楼梯有dp[i]种方法;然后思考递推公式dp[i] = dp[i-1] + dp[i-2]。其中dp[1]=1, dp[2]=2。

class Solution {
public:
    int climbStairs(int n) {
        if (n <= 1) return n; 
        vector<int> dp(n + 1);
        dp[1] = 1;
        dp[2] = 2;
        for (int i = 3; i <= n; i++) { // 注意i是从3开始的
            dp[i] = dp[i - 1] + dp[i - 2];
        }
        return dp[n];
    }
};

对于follow-up的问题,递推公式稍稍变化即可。

class Solution {
public:
    int climbStairs(int n, vector<int> X) {
        if (n <= 1) return n; 
        vector<int> dp(n + 1);
        dp[0] = 1;
        for (int i = 1; i <= n; i++) { // 注意i是从2开始的
        	for(int j:X){
        		if(i>=j) dp[i] += dp[i-j]
        	}  
        }
        return dp[n];
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值