[문제 링크]
https://www.acmicpc.net/problem/1965
[난이도]
- Silver 3
[알고리즘]
- DP
[코드]
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int[] arr = new int[n];
int[] dp = new int[n];
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
for (int i = 0; i < n; i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
// DP 배열 초기화
Arrays.fill(dp, 1);
int max = 0;
// LIS 알고리즘 적용
for (int i = 1; i < n; i++) {
for (int j = 0; j < i; j++) {
if (arr[j] < arr[i]) {
dp[i] = Math.max(dp[i], dp[j] + 1);
}
}
max = Math.max(max, dp[i]);
}
// 결과 출력
System.out.println(max);
}
}
[풀이]
dp[n] = n번째 상자를 마지막으로 포함하는 가장 긴 부분수열
'코딩테스트' 카테고리의 다른 글
백준 11055 : 가장 큰 증가하는 부분 수열2 [JAVA] (0) | 2024.06.12 |
---|---|
백준 9184 : 신나는 함수 실행[JAVA] (0) | 2024.06.12 |
백준 8394: 악수 [JAVA] (0) | 2024.06.11 |
백준 9095: 1, 2, 3 더하기 [JAVA] (1) | 2024.06.08 |
백준 9461: 파도반 수열 [JAVA] (1) | 2024.06.05 |