leetcode-62-不同路径

Posted oldby

tags:

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

技术图片题目描述:

技术图片

技术图片

方法一:

class Solution:
    def uniquePaths(self, m: int, n: int) -> int:
        return int(math.factorial(m+n-2)/math.factorial(m-1)/math.factorial(n-1))

方法二:动态规划 O(m*n) O(m*n)

class Solution:
    def uniquePaths(self, m: int, n: int) -> int:
        dp = [[1]*n] + [[1]+[0] * (n-1) for _ in range(m-1)] 
        #print(dp) 
        for i in range(1, m): 
            for j in range(1, n): 
                dp[i][j] = dp[i-1][j] + dp[i][j-1] 
        return dp[-1][-1]

 

另:空间:O(n)

class Solution:
    def uniquePaths(self, m: int, n: int) -> int:
        cur = [1] * n 
        for i in range(1, m): 
            for j in range(1, n): 
                cur[j] += cur[j-1] 
        return cur[-1]

 

以上是关于leetcode-62-不同路径的主要内容,如果未能解决你的问题,请参考以下文章

leetcode62 不同路径(Medium)

LeetCode.62——不同路径

LeetCode 62. 不同路径

Leetcode62. 不同路径(dp)

leetcode(62)不同路径

leetcode-62-不同路径