반응형
https://www.acmicpc.net/problem/14002
본 문제는 가장 긴 증가하는 부분 수열과 비슷한 문제다. (때문에 자세한 설명은 생략한다.) 가장 긴 증가하는 부분 수열의 길이를 출력하는 것은 동일하나, 가장 긴 증가하는 부분 수열을 출력해야 하는 문제다. 따라서, 점화식을 계산할 때 따로 이전 배열만 저장하면 된다.
Bottom-up
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 <cstdio>
#include <stack>
using namespace std;
int a[1001];
int d[1001][2];
int main() {
int n;
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
scanf("%d", &a[i]);
}
for (int i = 0; i <= n; i++) {
d[i][0] = 1;
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j < i; j++) {
if (a[i] > a[j] && d[i][0] < d[j][0] + 1) {
d[i][0] = d[j][0] + 1;
d[i][1] = a[j];
}
}
}
int ans = 0, chk = 0;
for (int i = 1; i <= n; i++) {
if (ans < d[i][0]) {
ans = d[i][0];
chk = i;
}
}
stack<int> st;
st.push(a[chk]);
for (int i = n; i > 0; i--) {
if (a[i] == st.top()) st.push(d[i][1]);
}
printf("%d\n", ans);
st.pop();
while (!st.empty()) {
printf("%d ", st.top());
st.pop();
}
printf("\n");
}
|
cs |
반응형
'백준' 카테고리의 다른 글
[백준] 1699 - 제곱수의 합, C++ (0) | 2020.01.12 |
---|---|
[백준] 1912 - 연속합, C++ (0) | 2020.01.12 |
[백준 11053] 가장 긴 증가하는 부분 수열, C++ (0) | 2020.01.12 |
[백준] 2193 - 이친수, C++ (0) | 2020.01.11 |
[백준] 10844 - 쉬운 계단 수, C++ (0) | 2020.01.11 |
댓글