- 생각
bfs 문제이다. 이차원 배열을 한 영역에서 양과 늑대의 수를 비교해주면서 돌면된다.
- 코드
정답 코드 : bfs를 통해 구현한 코드이다.
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class Main {
static int R,C, sheep, wolf;
static char[][] array;
static boolean[][] check;
static int[] x;
static int[] y;
public static void main(String[] args) throws Exception {
SetData();
bfs(0,0);
System.out.println(sheep + " " + wolf);
}
private static void SetData() throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
R = Integer.parseInt(st.nextToken());
C = Integer.parseInt(st.nextToken());
check = new boolean[R][C];
array = new char[R][C];
x = new int[]{-1, 0, 1, 0};
y = new int[]{0, -1, 0, 1};
sheep = wolf = 0;
for (int i = 0; i < R; i++) {
String line = br.readLine();
for (int j = 0; j < C; j++) {
array[i][j] = line.charAt(j);
}
}
for (int i = 0; i < R; i++) {
for (int j = 0; j < C; j++) {
if(!check[i][j] && array[i][j] != '#')
bfs(i,j);
}
}
}
private static void bfs(int a, int b) {
Queue<int[]> queue = new LinkedList<>();
queue.offer(new int[] {a,b});
check[a][b] = true;
int wolfCnt = 0;
int sheepCnt = 0;
while (!queue.isEmpty()) {
int location[] = queue.poll();
int r = location[0];
int c = location[1];
if (array[r][c] == 'k') {
sheepCnt++;
} else if (array[r][c] == 'v') {
wolfCnt++;
}
for (int i = 0; i < 4; i++) {
int r2 = r + x[i];
int c2 = c + y[i];
if(r2 < 0 || r2 >= R || c2 < 0 || c2 >= C) continue;
if (!check[r2][c2] && array[r2][c2] != '#') {
check[r2][c2] = true;
queue.offer(new int[] {r2,c2});
}
}
}
if (sheepCnt > wolfCnt) {
sheep += sheepCnt;
} else {
wolf += wolfCnt;
}
}
}
'algorithm' 카테고리의 다른 글
[JAVA] 백준 1699번 : 제곱수의 합 (0) | 2020.12.14 |
---|---|
[JAVA] 백준 14651번 : 걷다보니 신천역 삼 (Large) (0) | 2020.12.11 |
[JAVA] 백준 11055번 : 가장 큰 증가하는 부분 수열 (0) | 2020.12.10 |
[JAVA] 백준 18429번 : 근손실 (0) | 2020.12.10 |
[JAVA] 백준 20004번 : 베스킨라빈스 31 (0) | 2020.12.07 |