본문 바로가기
🧑‍💻코딩 테스트/백준 (BOJ)

[코딩테스트/백준 알고리즘] 1012번 - 유기농 배추 (Java, 자바 풀이)

by 코코의 주인 2022. 12. 20.

문제

https://www.acmicpc.net/problem/1012

 

1012번: 유기농 배추

차세대 영농인 한나는 강원도 고랭지에서 유기농 배추를 재배하기로 하였다. 농약을 쓰지 않고 배추를 재배하려면 배추를 해충으로부터 보호하는 것이 중요하기 때문에, 한나는 해충 방지에 

www.acmicpc.net


문제 설명


코드

import java.util.*;
import java.io.*;

class Main {
    static boolean[][] map;
    static boolean[][] visit;
    static Queue<int[]> q;

    static void BFS() {
        while (!q.isEmpty()) {
            int[] value = q.poll();
            int x = value[0];
            int y = value[1];
            if (x >= 0 && y >= 0) {
                if (!visit[x][y] && map[x][y]) {
                    q.offer(new int[]{x, y - 1});
                    q.offer(new int[]{x, y + 1});
                    q.offer(new int[]{x - 1, y});
                    q.offer(new int[]{x + 1, y});
                }
                visit[x][y] = true;
            }
        }
    }

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int T = Integer.parseInt(br.readLine());
        while (T-- > 0) {
            String[] sArr = br.readLine().split(" ");
            int M = Integer.parseInt(sArr[0]);
            int N = Integer.parseInt(sArr[1]);
            int K = Integer.parseInt(sArr[2]);
            int count = 0;
            map = new boolean[51][51];
            visit = new boolean[51][51];
            q = new LinkedList<>();
            while (K-- > 0) {
                String[] arr = br.readLine().split(" ");
                map[Integer.parseInt(arr[0])][Integer.parseInt(arr[1])] = true;
            }
            for (int i = 0; i < M; i++) {
                for (int j = 0; j < N; j++) {
                    if (!visit[i][j] && map[i][j]) {
                        count++;
                        q.add(new int[]{i, j});
                        BFS();
                    }
                }
            }
            System.out.println(count);
        }
    }
}

댓글