문제https://www.acmicpc.net/problem/1194풀이(40분)import java.io.*;import java.util.*;public class Main { static int n, m; static char[][] map; static Node start; static int[] dx = {0, 1, 0, -1}; // 사방탐색 static int[] dy = {1, 0, -1, 0}; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); ..