-
Notifications
You must be signed in to change notification settings - Fork 0
/
62.不同路径.py
101 lines (87 loc) · 2.38 KB
/
62.不同路径.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#
# @lc app=leetcode.cn id=62 lang=python3
#
# [62] 不同路径
#
# https://leetcode-cn.com/problems/unique-paths/description/
#
# algorithms
# Medium (54.49%)
# Likes: 261
# Dislikes: 0
# Total Accepted: 25.5K
# Total Submissions: 46.8K
# Testcase Example: '3\n2'
#
# 一个机器人位于一个 m x n 网格的左上角 (起始点在下图中标记为“Start” )。
#
# 机器人每次只能向下或者向右移动一步。机器人试图达到网格的右下角(在下图中标记为“Finish”)。
#
# 问总共有多少条不同的路径?
#
#
#
# 例如,上图是一个7 x 3 的网格。有多少可能的路径?
#
# 说明:m 和 n 的值均不超过 100。
#
# 示例 1:
#
# 输入: m = 3, n = 2
# 输出: 3
# 解释:
# 从左上角开始,总共有 3 条路径可以到达右下角。
# 1. 向右 -> 向右 -> 向下
# 2. 向右 -> 向下 -> 向右
# 3. 向下 -> 向右 -> 向右
#
#
# 示例 2:
#
# 输入: m = 7, n = 3
# 输出: 28
#
#
# from typing import List
# import pysnooper
# ? !解法一,递归,但是会溢出
# class Solution:
# @pysnooper.snoop()
# def uniquePaths(m: int, n: int) -> int:
# if m == 1 or n == 1:
# return 1
# else:
# return uniquePaths(m - 1, n) + uniquePaths(m, n - 1)
# !解法二,直接通项公式
# import math
# 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(mxn),时间复杂度O(mxn)
# class Solution:
# def uniquePaths(self, m: int, n: int) -> int:
# a = [[1] * n] + [[1] + [0] * (n - 1) for _ in range(m - 1)]
# for i in range(1, m):
# for j in range(1, n):
# a[i][j] = a[i - 1][j] + a[i][j - 1]
# return a[-1][-1]
解法四,对解法三优化,降低空间复杂度为O(n)
class Solution:
def uniquePaths(self, m: int, n: int) -> int:
ans = [1] * n
for i in range(1, m):
for j in range(1, n):
ans[j] += ans[j - 1]
return ans[-1]
# !调试
# import pysnooper
# @pysnooper.snoop()
# def uniquePaths(m, n):
# ans = [1] * n
# for i in range(1, m):
# for j in range(1, n):
# ans[j] += ans[j - 1]
# return ans[-1]
# a = uniquePaths(4, 3)