-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path300-longest-increasing-subsequence.cpp
81 lines (75 loc) · 1.73 KB
/
300-longest-increasing-subsequence.cpp
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
//给你一个整数数组 nums ,找到其中最长严格递增子序列的长度。
//
// 子序列 是由数组派生而来的序列,删除(或不删除)数组中的元素而不改变其余元素的顺序。例如,[3,6,2,7] 是数组 [0,3,1,6,2,2,7] 的子
//序列。
//
// 示例 1:
//
//
//输入:nums = [10,9,2,5,3,7,101,18]
//输出:4
//解释:最长递增子序列是 [2,3,7,101],因此长度为 4 。
//
//
// 示例 2:
//
//
//输入:nums = [0,1,0,3,2,3]
//输出:4
//
//
// 示例 3:
//
//
//输入:nums = [7,7,7,7,7,7,7]
//输出:1
//
//
//
//
// 提示:
//
//
// 1 <= nums.length <= 2500
// -10⁴ <= nums[i] <= 10⁴
//
//
//
//
// 进阶:
//
//
// 你能将算法的时间复杂度降低到 O(n log(n)) 吗?
//
//
// Related Topics 数组 二分查找 动态规划 👍 3299 👎 0
#include "headers.h"
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public:
int lengthOfLIS(vector<int> &nums) {
int n = nums.size();
// 1. dp[i]: 以第i个数为截止的最大子序列长度
// 2. if (nums[j] < nums[i]) dp[i] = max(dp[i], dp[j] + 1)
// 3. 初始化
vector<int> dp(n, 1);
int res = 0;
// 4. 遍历顺序
for (int i = 0; i < n; ++i) {
for (int j = 0; j < i; ++j) {
if (nums[j] < nums[i])
dp[i] = max(dp[i], dp[j] + 1);
}
res = max(res, dp[i]);
}
return res;
}
};
//leetcode submit region end(Prohibit modification and deletion)
int main() {
Solution s;
vector<int> arr{10, 9, 2, 5, 3, 7, 101, 18};
assert(s.lengthOfLIS(arr) == 4);
arr = {1, 3, 6, 7, 9, 4, 10, 5, 6};
assert(s.lengthOfLIS(arr) == 6);
}