[이것이 코딩 테스트다 with Python] 연구소(Java)
Goal
“이것이 코딩 테스트다 with Python” 교재의 문제를 분석하고 코드와 함께 이해해보기 위한 글입니다.
문제 분석
3개의 벽을 세우는 모든 경우의 수에서 안전영역을 세어서 이전의 안전영역보다 값을 갈아치우는 방식으로 프로그래밍하면 될 것 같습니다.
- 모든 경우의 수의 3개의 벽을 세우는 DFS
- 바이러스가 퍼지게 하는 BFS
코드 구현
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
88
89
90
91
public class Laboratory {
private static int row, col;
private static int[][] laborMap;
private static int[][] infected;
static int maxSpace = Integer.MIN_VALUE;//최대값을 찾기 위한 최소값 설정
static Queue<int[]> q;
private static int[] dx = {-1, 1, 0 ,0};
private static int[] dy = {0, 0, -1, 1};
public static void main(String[] args) throws IOException { //p341
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st = new StringTokenizer(br.readLine());
row = Integer.parseInt(st.nextToken());
col = Integer.parseInt(st.nextToken());
laborMap = new int[row][col];
for (int i = 0; i < row; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < col; j++) {
laborMap[i][j] = Integer.parseInt(st.nextToken());
}
}
dfs(0);
bw.write(String.valueOf(maxSpace));
br.close();
bw.close();
}
private static void dfs(int wallCnt) { //벽세우기
if (wallCnt == 3) {
bfs();
return;
}
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
if (laborMap[i][j] == 0) {
laborMap[i][j] = 1;
dfs(wallCnt + 1);
laborMap[i][j] = 0;
}
}
}
}
private static void bfs() { //바이러스 퍼진 후 안전영역 초기화
q = new LinkedList<>();
initMap();
while (!q.isEmpty()) {
int[] tmp = q.poll();
int x = tmp[0];
int y = tmp[1];
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (nx >= 0 && nx < row && ny >= 0 && ny < col && infected[nx][ny] == 0) {
infected[nx][ny] = 2;
q.add(new int[]{nx, ny});
}
}
}
int cnt = 0;
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
if (infected[i][j] == 0) {
cnt++;
}
}
}
maxSpace = Math.max(maxSpace, cnt);
}
private static void initMap() {
infected = new int[row][col];
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
infected[i][j] = laborMap[i][j];
if (infected[i][j] == 2) {
q.add(new int[]{i, j});
}
}
}
}
}
This post is licensed under CC BY 4.0 by the author.