자바생
728x90

오답 노트 & 새로 아게 된 점

이 문제는 완탐으로 풀어도 아마 풀릴 것 같다.

그러나 정렬을 사용한다면 시간복잡도를 많이 줄일 수 있다.

 

여기서 색깔이 같은 점 중에 거리가 가장 가까운 점과 연결한다.

 

그래서 color가 같은 점들을 한 곳에 모아두고, 정렬을 시킨 뒤,

왼쪽 점과의 거리와 오른쪽 점과의 거리 중 최소를 구해 더하면 된다.

 


코드

 

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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import java.io.*;
import java.util.*;
 
public class Main {
    static int atoi(String str) {
        return Integer.parseInt(str);
    }
    static int N;
    static ArrayList<Integer> al[];
    public static void main(String[] args) throws IOException {
        input();
        pro();
    }
 
    static void pro() {
        for (int i = 1; i <= N; i++) {
            Collections.sort(al[i]);
        }
 
        int sum = 0;
 
        for (int i = 1; i <= N; i++) {
            for (int j = 0; j < al[i].size(); j++) {
                sum += Math.min(goLeft(j, i), goRight(j, i));
            }
        }
 
        System.out.println(sum);
    }
 
    static void input() throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        N = atoi(br.readLine());
 
        al = new ArrayList[N + 1];
 
        for (int i = 0; i <= N; i++) {
            al[i] = new ArrayList<>();
        }
 
        for (int i = 0; i < N; i++) {
            StringTokenizer st = new StringTokenizer(br.readLine());
            int position = atoi(st.nextToken());
            int color = atoi(st.nextToken());
 
            al[color].add(position);
        }
    }
 
    static int goLeft(int idx, int color) {
        if(idx == 0return 1000000;
 
        return al[color].get(idx) - al[color].get(idx - 1);
    }
 
    static int goRight(int idx, int color) {
        if(idx == al[color].size() - 1return 1000000;
 
        return al[color].get(idx + 1- al[color].get(idx);
    }
}
cs
728x90

'BOJ(Java)' 카테고리의 다른 글

자바(백준) 1120 문자열  (0) 2021.10.21
자바(백준) 14891 톱니바퀴  (0) 2021.10.18
자바(백준) 11652 카드  (0) 2021.10.17
자바(백준) 21317 징검다리 건너기  (0) 2021.10.16
자바(백준) 1759 암호 만들기  (0) 2021.10.14
profile

자바생

@자바생

틀린 부분이 있다면 댓글 부탁드립니다~😀

검색 태그