[Gold 5] [Java] 연구소 (14502 번)
by HeshAlgo728x90
Java Code
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
import java.awt.Point;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
public class Main {
static int N, M, answer;
static int[][] map, copyMap;
static int[] dx = {-1, 0, 1, 0};
static int[] dy = {0, 1, 0, -1};
static Queue<Point> q;
static String[] input;
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
input = br.readLine().split(" ");
N = Integer.parseInt(input[0]); // 세로 크기
M = Integer.parseInt(input[1]); // 가로 크기
map = new int[N][M]; // 맵 생성
// 입력값 넣기
for (int row = 0; row < N; row++) {
input = br.readLine().split(" ");
for (int col = 0; col < M; col++) {
map[row][col] = Integer.parseInt(input[col]);
}
}
// 3개의 벽 세우는 모든 경우의 수
combination(0, 0, 0);
System.out.println(answer);
}
private static void combination(int x, int y, int cnt) {
if (cnt == 3) {
// 맵 복사
copy();
// 바이러스 퍼트리기
virus();
// 안전영역 개수 구하기
count();
return;
}
// 재귀를 통해 3개의 벽을 세우는 경우의 수 구하기
for (int row = 0; row < N; row++) {
for (int col = 0; col < M; col++) {
if (map[row][col] == 0) {
map[row][col] = 1;
combination(row, col, cnt + 1);
map[row][col] = 0;
}
}
}
}
private static void copy() {
copyMap = new int[N][M];
for (int row = 0; row < N; row++) {
for (int col = 0; col < M; col++) {
copyMap[row][col] = map[row][col];
}
}
}
private static void count() {
int cnt = 0;
for (int row = 0; row < N; row++) {
for (int col = 0; col < M; col++) {
if (copyMap[row][col] == 0) {
cnt++;
}
}
}
answer = Math.max(answer, cnt);
}
// 바이러스 퍼트리기
private static void virus() {
q = new LinkedList<Point>();
for (int row = 0; row < N; row++) {
for (int col = 0; col < M; col++) {
if (copyMap[row][col] == 2) {
q.add(new Point(row, col));
bfs();
}
}
}
}
private static void bfs() {
while (!q.isEmpty()) {
Point point = q.poll();
int x = point.x;
int y = point.y;
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (0 <= nx && nx < N && 0 <= ny && ny < M) {
if (copyMap[nx][ny] == 0) {
copyMap[nx][ny] = 2;
q.add(new Point(nx, ny));
}
}
}
}
}
}
|
cs |
'알고리즘 > 백준 (순열과 조합)' 카테고리의 다른 글
[Silver 3] [Java] 모든 순열 (10974번) (0) | 2022.04.10 |
---|---|
[Gold 5] [Java] 치킨 배달 (15686 번) (0) | 2020.08.25 |
[Silver 2] [Java] 로또 (6603 번) (0) | 2020.08.25 |
블로그의 정보
꾸준히 공부하는 개발 노트
HeshAlgo