제출 코드
- 사용 알고리즘 :
DP
,LIS
LIS 심화버전처럼 배열을 만들어 풀었으나, 탐색과정에서 이분탐색을 사용하진 않았다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package gold;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.Comparator;
import java.util.StringTokenizer;
public class G2565_wire {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int[][] wire = new int[N][2];
int[] lis = new int[N];
for(int i=0; i<N; i++) {
StringTokenizer st = new StringTokenizer(br.readLine());
for(int j=0; j<2; j++) wire[i][j] = Integer.parseInt(st.nextToken());
}
Arrays.sort(wire, Comparator.comparingInt(o1->o1[0])); //제발이거외워라;
lis[0] = wire[0][1];
int result = 0;
for(int i=1; i<N; i++) { // i : 현재 B전기줄의 번호
for(int j=0; j<N; j++) { // j : 앞서 연결된 전기줄 수. lis[j] : 연결된 전기줄 중 가장 뒷번호(B)
if(wire[i][1]<lis[j] || lis[j]==0) {
lis[j] = wire[i][1];
result = Math.max(result, j);
break;
}
}
}
System.out.println(N-result-1);
}
}