일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘
- 동적 계획
- IT
- 이진 탐색
- Git
- 파이썬
- 문법
- 그래프
- sys.stdin.readline()
- type 함수
- 정렬
- 재귀 함수
- 스택
- 순차 탐색
- 분할 정복
- 트리
- UNIX
- 자기개발
- git hub
- 유닉스
- 백준
- NQueen
- MiniHeap
- 우분투
- 배열
- 기초
- 그리디
- format 메서드
- 자료구조
- 탐색
Archives
- Today
- Total
코딩고치
[ 백준][DP] 가장 긴 증가하는 부분수열 4 본문
1. 문제 주소
2. 문제
이 전에 풀었던 가장 긴 증가하는 부분수열 문제의 응용 문제이다. 이전에는 가장 긴 부분 수열의 길이만을 출력하였지만 이 문제는 부분 수열까지 출력을 해야한다. 언제 수열의 길이가 증가하는지 확인하고 그 때의 index를 배열에 저장을 하여 재귀함수를 이용하여 수열을 출력하였다.
3. 소스 코드
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
|
#include <iostream>
using namespace std;
int n[1000];
int length[1000];
int index[1000];
void print(int longestindex)
{
if (longestindex == -1) return;
print(index[longestindex]);
cout << n[longestindex] << ' ';
}
int main(void)
{
int a;
cin >> a;
for (int i = 0; i < a; i++)
{
cin >> n[i];
}
for (int i = 0; i < a; i++)
{
length[i] = 1;
index[i] = -1;
for (int j = 0; j < i; j++)
{
if (n[i] > n[j] && length[i] == length[j]) {
length[i] = length[j] + 1;
index[i] = j;
}
}
}
int longestlength = 0;
int longestindex = 0;
for (int i = 0; i < a; i++)
{
if (longestlength < length[i]) {
longestlength = length[i];
longestindex = i;
}
}
cout << longestlength << '\n';
print(longestindex);
cout << '\n';
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'백준 알고리즘 기초 > 다이내믹 프로그래밍' 카테고리의 다른 글
[백준][DP] 제곱수의 합 (0) | 2019.11.08 |
---|---|
[백준][DP] 연속합 (0) | 2019.11.06 |
[백준][DP] 가장 긴 증가하는 부분 수열 (0) | 2019.10.02 |
[백준][DP] 이친수 (0) | 2019.09.23 |
[백준][DP] 쉬운 계단 수 (0) | 2019.09.23 |
Comments