美文网首页
62. Unique Paths

62. Unique Paths

作者: jecyhw | 来源:发表于2019-05-30 06:27 被阅读0次

题目链接

https://leetcode.com/problems/unique-paths/

解题思路

简单dp,直接看代码

代码

class Solution {
public:
    int uniquePaths(int m, int n) {
        vector<vector<int>> dp(m, vector<int>(n, 0));

        for (int i = 0; i < m; ++i) {
            for (int j = 0; j < n; ++j) {
                if (i == 0 || j == 0) {
                    dp[i][j] = 1;
                } else {
                    dp[i][j] = dp[i - 1][j] + dp[i][j - 1];
                }
            }
        }
        return dp[m - 1][n - 1];
    }
};

相关文章

网友评论

      本文标题:62. Unique Paths

      本文链接:https://www.haomeiwen.com/subject/kamptctx.html