X
11054번 - 가장 긴 바이토닉 수열
import java.util.Arrays;
import java.util.Scanner;
public class Main {
static int n;
static int[] arr;
static int[] rlisCache;
static int[][] lisCache;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
arr = new int[n];
rlisCache = new int[n];
Arrays.fill(rlisCache, -1);
lisCache = new int[n][n];
for (int i = 0; i < n; i++) {
arr[i] = sc.nextInt();
Arrays.fill(lisCache[i], -1);
}
int max = 0;
for (int base = 0; base < n; base++) {
int max_lis = 0;
for (int i = 0; i <= base; i++) {
max_lis = Math.max(max_lis, lis(i, base));
}
max = Math.max(max, max_lis + rlis(base) - 1);
}
System.out.println(max);
sc.close();
}
// 순방향 start<= lis() <end
static int lis(int start, int end) {
if (lisCache[start][end] != -1)
return lisCache[start][end];
if (start == end)
return 1;
int ret = 1;
for (int next = start + 1; next <= end; next++) {
if (arr[start] < arr[next]) {
ret = Math.max(ret, lis(next, end) + 1);
}
}
lisCache[start][end] = ret;
return ret;
}
// 역순반향
static int rlis(int start) {
if(rlisCache[start]!=-1) {
return rlisCache[start];
}
if (start == n - 1)
return 1;
int ret = 1;
for (int next = start + 1; next < n; next++) {
if (arr[start] > arr[next]) {
ret = Math.max(ret, rlis(next) + 1);
}
}
rlisCache[start] = ret;
return ret;
}
}
최근 글
같은 카테고리의 다른 글
- 9933번 민균이의 비밀번호
- 1764번 듣보잡
- 1475번 방 번호
- 1157번 단어공부
- 최소값과 최대값
- 구간 합 구하기
- 최소값
- 1181번 - 단어 정렬
- 11652번 - 카드
- 2169번 - 로봇 조종하기
- 2178번 - 미로 탐색
- 9084번 - 동전
- 2098번 - 외판원 순회
- 11049번 - 행렬 곱셉 순서
- 2302번 - 극장 좌석
- 1495번 - Day of Mourning
- 11060번 - 점프 점프
- 5557번 - 1학년
- 1697번 - 숨바꼭질
- 2631번 - 줄세우기
- 11004번 - K번째 수
- 9507번 - Generations of Tribbles
- 1904번 - 01타일
- 10942번 - 팰린드롬
- 10164번 - 격자상의 경로
- 2011번 - 암호코드
- 11066번 - 파일합치기
- 11054번 - 가장 긴 바이토닉 수열
- 11724번 - 연결 요소 개수
- 11403번 - 경로찾기
- 2667번 - 단지번호붙이기
- 3187번 - 양치기 꿍
- 2225번 - 합분해
- 1965번 - 상자넣기
- 1937번 - 욕심쟁이 판다
- 1890번 - 점프
- 1520번 - 내리막길