-
[Baekjoon Online Judge] 1012번: 유기농 배추문제 풀이/Baekjoon Online Judge 2021. 1. 17. 22:35
요구사항
- 해충 방지에 효과적인 배추흰지렁이를 구입한다.
- 이 지렁이는 배추근처에 서식하며 해충을 잡아 먹으며 배추를 보호한다.
- 어떤 배추에 배추흰지렁이가 한마리라도 살고 있으면 이 지렁이는 인접한 다른 배추로 이동할 수 있다.
- 한 배추의 상하좌우 네 방향에 다른 배추가 인접한 배추이다.
- 배추들이 모여있는 곳에는 배추흰지렁이가 한 마리만 있으면 된다.
- 0은 배추가 심어져 있지 않은 땅이고, 1은 배추가 심어져 있는 땅을 나타낸다.입력
입력의 첫 줄에는 테스트 케이스의 개수 T가 주어진다. 그 다음 줄부터 각각의 테스트 케이스에 대해 첫째 줄에는 배추를 심은 배추밭의 가로길이 M(1 ≤ M ≤ 50)과 세로길이 N(1 ≤ N ≤ 50), 그리고 배추가 심어져 있는 위치의 개수 K(1 ≤ K ≤ 2500)이 주어진다. 그 다음 K줄에는 배추의 위치 X(0 ≤ X ≤ M-1), Y(0 ≤ Y ≤ N-1)가 주어진다.
출력
각 테스트 케이스에 대해 필요한 최소의 배추흰지렁이 마리 수를 출력한다.
import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.LinkedList; import java.util.Queue; public class Baekjoon1012 { static int[][] map; static boolean[][] visited; static int n, m, v; static class Location { int x, y; public Location(int x, int y) { this.x = x; this.y = y; } } public static void bfs(int startX, int startY) { int[] xMove = {-1, 1, 0, 0}; int[] yMove = {0, 0, -1, 1}; Queue<Location> queue = new LinkedList<>(); queue.add(new Location(startX, startY)); visited[startX][startY] = true; while (!queue.isEmpty()) { Location location = queue.poll(); int x = location.x; int y = location.y; for (int i = 0; i < 4; i++) { int curX = x + xMove[i]; int curY = y + yMove[i]; if (isLocation(curX, curY)) { queue.add(new Location(curX, curY)); visited[curX][curY] = true; } } } // print(); } public static boolean isLocation(int x, int y) { if (x < 0 || x >= n || y < 0 || y >= m) return false; if (visited[x][y] != false || map[x][y] == 0) return false; return true; } public static void print() { for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { System.out.print(visited[i][j] + "\t"); } System.out.println(); } System.out.println(); } public static void main(String[] args) throws IOException { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bufferedWriter = new BufferedWriter(new OutputStreamWriter(System.out)); int t = Integer.parseInt(bufferedReader.readLine()); int[] counts = new int[t]; for (int c = 0; c < t; c++) { String[] input = bufferedReader.readLine().split(" "); m = Integer.parseInt(input[0]); // 가로 n = Integer.parseInt(input[1]); // 세로 v = Integer.parseInt(input[2]); map = new int[n][m]; visited = new boolean[n][m]; for (int i = 0; i < v; i++) { String[] vertices = bufferedReader.readLine().split(" "); int x = Integer.parseInt(vertices[0]); int y = Integer.parseInt(vertices[1]); map[y][x] = 1; } int count = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (map[i][j] == 1 && !visited[i][j]) { ++count; bfs(i, j); } } } counts[c] = count; // print(); } for (int count : counts) { bufferedWriter.write(count + "\n"); } bufferedWriter.flush(); bufferedReader.close(); bufferedWriter.close(); } }
주어진 map을 탐색하며 하나의 배추 그룹을 찾을 때 마다 count를 증가시킨다. 모든 그룹을 탐색했다면 각 테스트 케이스 마다 count 값을 저장하는 counts 배열에 저장한다.
'문제 풀이 > Baekjoon Online Judge' 카테고리의 다른 글
[Baekjoon Online Judge] 1032번: 명령 프롬프트 (0) 2021.01.17 [Baekjoon Online Judge] 2902번: KMP는 왜 KMP일까? (0) 2021.01.17 [Baekjoon Online Judge] 1697번: 숨바꼭질 (0) 2021.01.16 [Baekjoon Online Judge] 2606번: 바이러스 (0) 2021.01.14 [Baekjoon Online Judge] 7576번: 토마토 (0) 2021.01.14