https://www.acmicpc.net/problem/1012 import java.util.LinkedList;import java.util.Queue;import java.util.Scanner;public class Baekjoon_1012_유기농배추_BFS { static int M, N, K; static int[][] map; static boolean[][] check; static int[] dx = { 0, 0, 1, -1 }; static int[] dy = { 1, -1, 0, 0 }; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int TC = sc.nextInt(); for (i..