题解 1257: 超级楼梯

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

最暴力的写法QwQ

摘要:#include<bits/stdc++.h> using namespace std; void solve() { int m,cnt=0; cin>>m; for(int i=……

超级楼梯(Python)

摘要:解题思路:注意事项:参考代码:def super_stair_ways(m):    dp = [0] * (m + 1)    dp[1] = 1    for i in range(2, m + ……

2种递归写法

摘要:解题思路: #include   <bits/stdc++.h>using   namespace std;int pd(int m){  if(m<=0) return 0;  if(m==1) r……

超级楼梯——递归

摘要:解题思路:注意事项:参考代码:def pa(n):    if n == 1 or n == 2:        return n    else:        return pa(n-1)+pa(……

1257: 超级楼梯

摘要:```cpp #include using namespace std; int total; int sum(int step,int m) { if(step>m) ……