-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path300.最长上升子序列.py
49 lines (46 loc) · 1.14 KB
/
300.最长上升子序列.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
#
# @lc app=leetcode.cn id=300 lang=python3
#
# [300] 最长上升子序列
#
# https://leetcode-cn.com/problems/longest-increasing-subsequence/description/
#
# algorithms
# Medium (43.97%)
# Likes: 557
# Dislikes: 0
# Total Accepted: 74.7K
# Total Submissions: 170.2K
# Testcase Example: '[10,9,2,5,3,7,101,18]'
#
# 给定一个无序的整数数组,找到其中最长上升子序列的长度。
#
# 示例:
#
# 输入: [10,9,2,5,3,7,101,18]
# 输出: 4
# 解释: 最长的上升子序列是 [2,3,7,101],它的长度是 4。
#
# 说明:
#
#
# 可能会有多种最长上升子序列的组合,你只需要输出对应的长度即可。
# 你算法的时间复杂度应该为 O(n^2) 。
#
#
# 进阶: 你能将算法的时间复杂度降低到 O(n log n) 吗?
#
#
# @lc code=start
class Solution:
def lengthOfLIS(self, nums: List[int]) -> int:
# 动态规划
if not nums:
return 0
dp = [1] * len(nums)
for i in range(len(nums)):
for j in range(i):
if nums[j] < nums[i]:
dp[i] = max(dp[i], dp[j]+1)
return max(dp)
# @lc code=end