문제 풀이
오늘의 문제 - 백준11722.가장 긴 감소하는 부분 수열
나의 풀이
import java.util.*;
import java.io.*;
public class Main {
static int N;
static int[] arr;
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];
StringTokenizer st = new StringTokenizer(br.readLine());
for (int i = 0; i < N; i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
System.out.println(longDecreasingSeq());
}
public static int longDecreasingSeq() {
int count = 0;
int[] dp = new int[N];
Arrays.fill(dp, 1);
for (int i = 0; i < N; i++) {
for (int j = 0; j < i; j++) {
if (arr[i] < arr[j] && dp[i] < dp[j] + 1) {
dp[i] = dp[j] + 1;
}
}
count = Math.max(count, dp[i]);
}
return count;
}
}