티스토리 뷰

출저 : https://www.acmicpc.net/problem/15686


"Brute force/ 다해보자."


1. 마을의 전체 치킨집 에서 m개의 치킨집을 고른다
2. 각 집에서 m개의 치킨 중에 가장 가까운 거리를 구하고 모든 집에서의 치킨 거리를 더한다.
3. 치킨 거리의 값 중 최소값을 구한다.

고대로 해줬다.

재귀를 가지고 m개의 치킨 집을 고른 후 거리를 구해줬다.


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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
 
public class Main {
 
    static int n,m;
    static int[][] map;
    static int MIN = Integer.MAX_VALUE;
    static List<Node> chickens = new ArrayList<Node>();
    static List<Node> homes = new ArrayList<Node>();
    static Node[] selected;
    static int size;
    
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());
        
        n = Integer.parseInt(st.nextToken());
        m = Integer.parseInt(st.nextToken());
        
        map = new int[n][n];
        selected = new Node[m];
        
        for (int i = 0; i < n; i++) {
            st = new StringTokenizer(br.readLine());
            for (int j = 0; j < n; j++) {
                map[i][j] = Integer.parseInt(st.nextToken());
                
                if(map[i][j] == 2) {
                    chickens.add(new Node(i, j));
                }
                else if(map[i][j] == 1) {
                    homes.add(new Node(i, j));
                }
            }
        }
        
        size = chickens.size();
        
        solve(0,0);
        
        System.out.println(MIN);
    }
    
    static void solve(int idx, int cnt) {
        if(cnt == m) {
            int dist = 0;
            
            for (int j = 0; j < homes.size(); j++) {
                Node h = homes.get(j);
                int min = Integer.MAX_VALUE;
                for (int i = 0; i < m; i++) {
                    Node c = selected[i];
                    min = Math.min(min, getDistance(h.x, h.y, c.x, c.y));
                }
                dist += min;
            }
            
            MIN = Math.min(MIN, dist);
            return ;
        }
        
        for (int i = idx; i < size; i++) {
            selected[cnt] = chickens.get(i);
            solve(i+1, cnt+1);
        }
    }
    
    static int getDistance(int x1, int y1, int x2, int y2) {
        return Math.abs(x1-x2) + Math.abs(y1-y2); 
    }
}
 
class Node {
    int x;
    int y;
    
    Node(int x, int y) {
        this.x = x;
        this.y = y;
    }
}
 
cs






댓글
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday