제출 코드
-
집과 치킨집의 좌표를 따로 저장해둔 뒤, 조합으로 생성되는 치킨 집의 경우에 대해 모두 계산
-
시간 초과 → 또 조합코드 잘못짬
- 다음 재귀 호출 시
comb(n+1, start+1);
→comb(n+1, i+1);
- 다음 재귀 호출 시
-
새로 배운 것
- 일차원 배열 한번에 출력하고 싶을 때 :
Arrays.toString(배열이름)
- 코드 실행시간 찍어보고 싶을 때 :
System.nanoTime( );
- 일차원 배열 한번에 출력하고 싶을 때 :
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
package gold;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
public class G15683_chickenDelivery {
static int N, M, result = Integer.MAX_VALUE;
static int[][] road;
static int[] list;
static List<map> home;
static List<map> chicken;
static int size;
static class map{
public int i;
public int j;
map(int i, int j){
this.i = i;
this.j = j;
}
}
static void comb(int n, int start) {
if(n==M) {
calcLoad();
return;
}
for(int i=start; i<size; i++) {
list[n] = i;
comb(n+1, i+1);
}
}
static void calcLoad() {
int sum = 0;
for(map m : home) {
int min = Integer.MAX_VALUE;
for(int n : list) {
min = Math.min(min, Math.abs(m.i-chicken.get(n).i) + Math.abs(m.j-chicken.get(n).j));
}
sum += min;
if(result < sum) return;
}
result = sum;
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] line = br.readLine().split(" ");
N = Integer.parseInt(line[0]);
M = Integer.parseInt(line[1]);
home = new ArrayList<>();
chicken = new ArrayList<>();
road = new int[N][N];
for(int i=0; i<N; i++) {
line = br.readLine().split(" ");
for(int j=0; j<N; j++) {
road[i][j] = Integer.parseInt(line[j]);
if(road[i][j]==1) home.add(new map(i, j));
else if(road[i][j]==2) chicken.add(new map(i, j));
}
}
list = new int[M];
size = chicken.size();
comb(0, 0);
System.out.println(result);
}
}