-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
68 lines (56 loc) Β· 1.86 KB
/
Main.java
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
package Simulation.P15686;
import java.io.*;
import java.util.*;
public class Main {
static int N, M, ans = Integer.MAX_VALUE;
static int[][] map;
static List<Pos> home, chicken;
static int[] selected;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Simulation/P15686/input.txt"));
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];
home = new ArrayList<>();
chicken = new ArrayList<>();
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] == 1) home.add(new Pos(i, j));
else if (map[i][j] == 2) chicken.add(new Pos(i, j));
}
}
selected = new int[M];
dfs(0, 0);
System.out.println(ans);
}
static void dfs(int start, int cnt) {
if (cnt == M) {
int sum = 0;
for (Pos h : home) {
int dist = Integer.MAX_VALUE;
for (int s : selected) {
Pos c = chicken.get(s);
dist = Math.min(dist, Math.abs(h.i - c.i) + Math.abs(h.j - c.j));
}
sum += dist;
}
ans = Math.min(ans, sum);
return;
}
for (int i = start, size = chicken.size(); i < size; i++) {
selected[cnt] = i;
dfs(i+1, cnt+1);
}
}
static class Pos {
int i, j;
public Pos(int i, int j) {
this.i = i;
this.j = j;
}
}
}