[BOJ] 14002 가장 긴 증가하는 부분 수열 4
🔗 Problem
https://www.acmicpc.net/problem/14002
👩💻 Code
package baekjoon;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.Arrays;
import java.util.StringTokenizer;
// 가장 긴 증가하는 부분 수열 4
public class BJ14002 {
static int n;
static int[] arr;
static int[] dp;
static int[] answer;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
arr = new int[n];
dp = new int[n];
Arrays.fill(dp, 1);
StringTokenizer st = new StringTokenizer(br.readLine());
for(int i = 0; i < arr.length; i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
doDP();
printResult();
}
private static void doDP() {
for(int i = 0; i < n; i++) {
for(int j = 0; j < i; j++) {
if(arr[j] < arr[i]) {
dp[i] = Math.max(dp[i], dp[j] + 1);
}
}
}
}
private static void printResult(){
int[] copy = dp.clone();
Arrays.sort(copy);
int max = copy[copy.length - 1];
System.out.println(max);
answer = new int[max+1];
for(int i = dp.length - 1; i >= 0; i--) {
if(dp[i] == max) {
answer[max] = arr[i];
max--;
if(max == 0) {
for(int j = 1; j < answer.length; j++) {
System.out.print(answer[j] + " ");
}
System.out.println();
return;
}
}
}
}
}
💡 Learned
package baekjoon;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.Arrays;
import java.util.StringTokenizer;
// 가장 긴 증가하는 부분 수열 4
public class BJ14002 {
static int n;
static int[] arr;
static int[] dp;
static int[] answer;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
arr = new int[n];
dp = new int[n];
Arrays.fill(dp, 1);
StringTokenizer st = new StringTokenizer(br.readLine());
for(int i = 0; i < arr.length; i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
doDP();
printResult();
}
private static void doDP() {
for(int i = 0; i < n; i++) {
for(int j = 0; j < i; j++) {
if(arr[j] < arr[i]) {
dp[i] = Math.max(dp[i], dp[j] + 1);
}
}
}
}
private static void printResult(){
int[] copy = dp.clone();
Arrays.sort(copy);
int max = copy[copy.length - 1];
System.out.println(max);
answer = new int[max+1];
for(int i = dp.length - 1; i >= 0; i--) {
if(dp[i] == max) {
answer[max] = arr[i];
max--;
if(max == 0) {
for(int j = 1; j < answer.length; j++) {
System.out.print(answer[j] + " ");
}
System.out.println();
return;
}
}
}
}
}
아이디어
- 며칠 전에
[11054] 가장 긴 바이토닉 부분 수열
문제를 풀어서 해당 문제는 쉽게 해결하였다. - 수열 출력은 뒤에서부터 max, max-1, max-2, ..., 1 번째 해당하는 값을 담은 후 거꾸로 출력하였다. Stack으로 해도 될 듯.
Author And Source
이 문제에 관하여([BOJ] 14002 가장 긴 증가하는 부분 수열 4), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ssoyeong/BOJ-14002-가장-긴-증가하는-부분-수열-4저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)