【LeetCode】不同路劲(动态规划)

不同路劲

      • 题目描述
      • 算法流程
      • 编程代码

链接: 不同路劲

题目描述

【LeetCode】不同路劲(动态规划)_第1张图片

算法流程

【LeetCode】不同路劲(动态规划)_第2张图片

编程代码

class Solution {
public:
    int uniquePaths(int m, int n) {
        vector<vector<int>> dp(m + 1,vector<int>(n + 1));
        dp[1][0] = 1;
        for(int i = 1;i <= m;++i)
        {
            for(int j = 1;j <= n;++j)
            {
                dp[i][j] = dp[i-1][j] + dp[i][j-1];
            }
        }
        return dp[m][n];
    }
};

【LeetCode】不同路劲(动态规划)_第3张图片

你可能感兴趣的:(leetcode,leetcode)