forked from Seogeurim/CS-study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLDS_bs.cpp
48 lines (37 loc) Β· 772 Bytes
/
LDS_bs.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
#include <iostream>
using namespace std;
int N;
int arr[1001];
int LDS[1001];
int search(int start, int end, int target){
int ans;
while(start <= end){
int mid = (start + end) / 2;
if(LDS[mid] <= target){
ans = mid;
end = mid - 1;
}
else
start = mid + 1;
}
return ans;
}
int main(void){
ios::sync_with_stdio(false);
cin.tie(0);
cin>>N;
for(int i=0; i<N; i++)
cin>>arr[i];
int end = 0;
LDS[end] = arr[0];
for(int i=1; i<N; i++){
if(LDS[end] <= arr[i]){
int idx = search(0, end, arr[i]);
LDS[idx] = arr[i];
}
else
LDS[++end] = arr[i];
}
cout<<end+1<<"\n";
return 0;
}