forked from Seogeurim/CS-study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlis_dp.cpp
45 lines (38 loc) Β· 831 Bytes
/
lis_dp.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
#include <iostream>
#define pb push_back
using namespace std;
int dp[1001];
int arr[1001];
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
int n, top = -1, top_i;
cin >> n;
dp[0] = 0; dp[0] = 0;
for(int i=1;i<=n;i++) cin >> arr[i];
for(int i=1;i<=n;i++) {
dp[i] = 1;
for(int j=1;j<=i;j++) {
if(arr[j] < arr[i] && dp[j] +1 > dp[i]) {
dp[i] = dp[j]+1;
}
if(dp[i] > top) {
top = dp[i];
top_i = i;
// LISκΈΈμ΄ μ΅λκ°μ κ°λ μΈλ±μ€λ₯Ό top_iμ μ μ₯νλ€.
}
}
}
cout << top << '\n';
// μμμ μ μ₯ν top_i μΈλ±μ€λΆν° μμν΄μ κ±°κΎΈλ‘ νμνλ©΄ LISλ₯Ό ꡬμ±νλ μμλ€μ μΆλ ₯ν μ μλ€.
for(int i=top_i;i>=1;i--) {
if(dp[i] == top) {
s.push(arr[i]);
top--;
}
}
while(!s.empty()) {
cout << s.top() << ' ';
s.pop();
}
}