c_cpp 62.独特的道路

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 62.独特的道路相关的知识,希望对你有一定的参考价值。

//使用动态规划解答
class Solution {
    int uniquePaths(int m, int n) {
        if (m > n) return uniquePaths(n, m);
        vector<int> cur(m, 1);
        for (int j = 1; j < n; j++)
            for (int i = 1; i < m; i++)
                cur[i] += cur[i - 1]; 
        return cur[m - 1];
    }
}; 

以上是关于c_cpp 62.独特的道路的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 独特的id生成器

c_cpp 独特的路径I和II,网格

c_cpp Rcpp从头开始独特设定(ish)

c_cpp 从头开始的C ++ / Cpp独特集(ish)

c_cpp 人力资源道路和图书馆

c_cpp 387.字符串中的第一个独特字符