码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode-62. Unique Paths

时间:2018-03-28 22:01:14      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:边界条件   分享   log   ++   turn   ret   cto   gpo   com   

技术分享图片

使用动态规划,思路很清晰

使用如下代码,发现超时了

int uniquePaths(int m, int n) {
    if (m == 1 || n == 1)
        return 1;
    return uniquePaths(m - 1, n) + uniquePaths(m, n - 1);
}

这段代码遍历出了所有的路径,而题目只需要路径的数目。

使用数组记录,关键在于怎么确定边界条件

int uniquePaths2(int m, int n) {
    vector<vector<int>> result(m,vector<int>(n,1));
    for (int i = 1; i < m; ++i) {
        for (int j = 1; j < n; ++j) {
            result[i][j] = result[i-1][j] + result[i][j - 1];
        }
    }
    return result[m-1][n-1];
}

 

LeetCode-62. Unique Paths

标签:边界条件   分享   log   ++   turn   ret   cto   gpo   com   

原文地址:https://www.cnblogs.com/likaiming/p/8666346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!