티스토리 뷰
1. 문제
수열 A가 주어졌을 때, 가장 긴 증가하는 부분 수열을 구하는 문제.
입)
6
10 20 10 30 20 50
출)
4
2. 풀이
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int[] A = new int[N+1];
int[] D = new int[N+1];
for (int i = 1; i <= N; i++) {
A[i] = sc.nextInt();
}
for (int i = 1; i <= N; i++) {
D[i] = 1;
int temp = 1;
for (int j = 1; j < i; j++) {
// 값이 작으면
if (A[i] > A[j]) {
if (D[i] + D[j] > temp) {
temp = D[i] + D[j];
}
}
}
D[i] = temp;
}
int result = 0;
for (int i = 1; i <= N; i++) {
if (result < D[i]) {
result = D[i];
}
}
System.out.println(result);
}
}
D[i] = A[1], ... , A[i]까지 수열이 있을 때, A[i]를 마지막으로 하는 가장 긴 증가하는 수열의 길이
D[i] = max(D[j]) + 1, j < i, A[j] < A[i]
A 배열에 입력값들을 저장하고, A를 탐색하면서 자기 자신보다 앞자리에 작은 값이 있는 경우 길이 값이 최대가 되는 값을 더해줌
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 프로그래머스
- 블로킹
- non-blocking
- blocking
- a
- 비동기
- 동기
- 핸들러 인터셉터
- 프로그래머스 Level 2
- 인터셉터
- 프로그래머스 Level 1
- Asynchronous
- 해시
- 프로그래머스 Level 3
- 코딩테스트 고득점 Kit
- Handler Interceptor
- 논블로킹
- http://www.nextree.co.kr/p6960/
- 필터
- Filter
- 스택/큐
- Synchronous
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함