AcWing 822. 走方格

简介: AcWing 822. 走方格

文章目录

  • AcWing 822. 走方格
  • AC代码


AcWing 822. 走方格

本题链接:AcWing 822. 走方格

本博客给出本题截图

image.png

AC代码

代码

#include <iostream>
using namespace std;
int n, m;
int ans;
void dfs(int x, int y)
{
    if (x == n && y == m) ans ++ ;
    else
    {
        if (y < m) dfs(x, y + 1);
        if (x < n) dfs(x + 1, y);
    }
}
int main()
{
    cin >> n >> m;
    dfs(0, 0);
    cout << ans << endl;
    return 0;
}



目录
相关文章
【力扣每日一题/30】463. 岛屿的周长
【力扣每日一题/30】463. 岛屿的周长
【力扣每日一题/30】463. 岛屿的周长
|
2月前
lanqiao OJ 664 方格填数
lanqiao OJ 664 方格填数
17 1
|
2月前
acwing 173 矩阵距离
acwing 173 矩阵距离
15 0
|
6月前
|
存储 算法 数据可视化
LeetCode 题目 120:三角形最小路径和
LeetCode 题目 120:三角形最小路径和
|
7月前
|
移动开发
acwing 1843 圆形牛棚
acwing 1843 圆形牛棚
|
7月前
|
JavaScript
【leetcode】221. 最大正方形 动态规划法
【leetcode】221. 最大正方形 动态规划法
28 0
|
7月前
leetcode-463:岛屿的周长
leetcode-463:岛屿的周长
42 0
【LeetCode-每日一题】-120. 三角形最小路径和
【LeetCode-每日一题】-120. 三角形最小路径和
AcWing——方格迷宫(有点不一样的迷宫问题)
AcWing——方格迷宫(有点不一样的迷宫问题)
96 0
【AcWing】曼哈顿距离
【AcWing】曼哈顿距离
71 0