9.9 练手 腾讯50题 62

Leetcode 62. Unique Paths

A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).

The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diagram below).

How many possible unique paths are there?


Above is a 7 x 3 grid. How many possible unique paths are there?

Note: m and n will be at most 100.

Example 1:

Input: m = 3, n = 2
Output: 3
Explanation:
From the top-left corner, there are a total of 3 ways to reach the bottom-right corner:
1. Right -> Right -> Down
2. Right -> Down -> Right
3. Down -> Right -> Right

Example 2:

Input: m = 7, n = 3
Output: 28

 

一开始使用递归深搜来做,超时了

改变策略用动态规划来做,想法是先用一个矩阵储存到达每个块的路径总量,所以下一个块就是上面和左边块的路径之和,避免了重复计算,准则是:

mat[i][j] = mat[i-1][j] + mat[i][j-1]  i,j !=0

else if  i =0 j = 0 : mat[i][j] = 0

else: i = 0 or j = 0: mat[i][j] = 1

 

代码如下:

class Solution(object):
    def uniquePaths(self, m, n):
        K = [[0]*n for _ in range(m)]
        K[0] = [1]*n
        for i in range(m):
            K[i][0] = 1
        for i in range(1,m):
            for j in range(1,n):
                K[i][j] = K[i-1][j] + K[i][j-1]
        return K[m-1][n-1]

beat 95+% 时间复杂度为O(m*n)

 

 


另附递归代码:

class Solution(object):
    def uniquePaths(self, m, n):
        """
        :type m: int
        :type n: int
        :rtype: int
        """
        if(m == 1):
            return 1
        if(n == 1):
            return 1
        else:
            downPath = self.uniquePaths(m-1, n)
            rightPath = self.uniquePaths(m, n-1)
            return downPath+rightPath

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值