[백준] 21736번
int형의 2차원 배열(map)을 선언하고 다음과 같은 규칙을 통해 값을 넣어줬다. /* 0 : 빈 공간, 도연이 1 : 벽 2 : 사람 */ 그리고 도연이의 위치를 저장해두고 dfs(도연이의 y 좌표, 도연이의 x좌표)를 돌려서 해결! public class Main { static int[][] map; static boolean[][] check; static int[] dx = new int[]{0, 1, 0, -1}; static int[] dy = new int[]{1, 0, -1, 0}; static int N, M, peoples = 0; public static void main(String[] args) throws IOException { BufferedReader br = new B..