문제https://www.acmicpc.net/problem/2186풀이(32분)import java.util.*;import java.io.*;public class Main { static int n, m, k; static String target; static char[][] map; static int[][][] dp; static int[] dx = new int[]{0, 0, -1, 1}; // 상하좌우 static int[] dy = new int[]{-1, 1, 0, 0}; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedRea..