题解 1257: 超级楼梯

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

筛选

最暴力的写法QwQ

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

超级楼梯 (C++代码)

摘要:解题思路:斐波拉契数列(简单的动态规划)注意事项:参考代码:#include <iostream>using namespace std;int main() {    int cases, n, ……

超级楼梯 (C++代码)简单的DFS模版题

摘要:解题思路:    使用简单的深度优先算法解决问题。    1.由于不存在负数的楼梯,本着让数据量最大的原则,使用unsigned long long来做变量。    2.dfs----深度优先算法,将……

2种递归写法

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

超级楼梯-题解(C++代码)-动态规划练习

摘要:### 动态规划练习 ```cpp 求1-40阶,一共40阶楼梯,欲求第n阶的数量,要先求 n-1阶 + n-2阶的数量 欲求n-1阶和n-2阶,要先求n-1 -1=n-2阶 和n-1 -2=n……