코드 import java.io.*; import java.util.Arrays; import java.util.LinkedList; public class Main { static int n, m; static String[][] map; static int[][] visited; static int idx = 1; static public class Loc { int y, x; public Loc(int y, int x) { this.y = y; this.x = x; } } public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System...