forked from AllAlgorithms/cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlis.cpp
42 lines (38 loc) · 958 Bytes
/
lis.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
#include <iostream>
#include <algorithm>
#include <vector>
const int INF = 2e9 + 10;
void printArray(std :: vector <int> arr){
std :: cout << '[';
const int n = arr.size();
for(int i = 0; i != n; ++ i){
if(i) std :: cout << ", ";
std :: cout << arr[i];
}
std :: cout << ']';
}
int LIS(std :: vector <int> arr){
const int n = arr.size() + 1;
int dp[n];
dp[0] = -INF;
for(int i = 1; i < n; ++ i){
dp[i] = INF;
}
int pos = 0;
for(int i = 0; i != n - 1; ++ i){
int cur = std :: upper_bound(dp, dp + n, arr[i]) - dp;
if(dp[cur] > arr[i]) dp[cur] = arr[i];
}
for(int i = 0; i != n; ++ i){
if(dp[i] == INF) break;
pos = i;
}
return pos;
}
int main(){
std :: vector <int> array = {3, 4, 5, 2, 6, 7};
std :: cout << "The Longest Increasing sequence of ";
printArray(array);
std :: cout << " is " << LIS(array);
return 0;
}