public class Main { static int[] dx = {0, 1, 0, -1}; // 상 하 static int[] dy = {1, 0, -1, 0}; // 좌 우 static boolean[][] visited; // 방문한 곳인지 체크할 배열 static int[][] miro; // N x M 크기의 미로 static int n, m; // N 개의 줄에는 M 개의 정수로 미로가 이루어짐 public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTok..