- 코드
성공 코드 : 이분 탐색을 통해서 LIS배열보다 큰값은 LIS배열 뒤에 붙여주었고, LIS배열 맨 뒤에 값보다 작은 값은 이분탐색을 통해서 INDEX를 가져와서 값을 바꿔주었다.
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
long N = Integer.parseInt(br.readLine());
long[] inputArray = new long[(int) N];
long[] LIS = new long[(int) N];
StringTokenizer st = new StringTokenizer(br.readLine());
for (long i = 0; i < N; i++) {
inputArray[(int) i] = Integer.parseInt(st.nextToken());
}
LIS[0] = inputArray[0];
long j = 0;
for (long i = 1; i < N; i++) {
if (LIS[(int) j] < inputArray[(int) i]) {
LIS[(int) ++j] = inputArray[(int) i];
} else {
long ans = binarySearch(LIS, 0, j, inputArray[(int) i]);
LIS[(int) ans] = Math.min(LIS[(int) ans], inputArray[(int) i]);
}
}
System.out.println(j + 1);
}
static long binarySearch(long[] LIS, int startIndex, long endIndex, long key) {
while (startIndex <= endIndex) {
int mid = (int) ((startIndex + endIndex) / 2);
if (LIS[mid] < key) {
startIndex = mid + 1;
} else {
endIndex = mid - 1;
}
}
return startIndex;
}
}
'algorithm' 카테고리의 다른 글
[JAVA] 백준 14002번 : 가장 긴 증가하는 부분 수열 4 (0) | 2020.08.31 |
---|---|
[JAVA] 백준 13022번 : 늑대와 올바른 단어 (0) | 2020.08.29 |
[JAVA] 백준 11053번 : 가장 긴 증가하는 부분 수열 (0) | 2020.08.28 |
[JAVA] 백준 13711번 : LCS 4 (0) | 2020.08.27 |
[JAVA] 백준 1958번 : LCS 3 (0) | 2020.08.27 |