백준 7569 토마토
-
boj)7569 - 토마토PS/boj 2020. 10. 19. 14:11
import java.io.*; import java.util.*; public class Main { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; static Queue q = new LinkedList(); static int row, col, h, nx, ny, nz; static int[][][] map; static boolean[][][] v; static int[] dx = {0, 0, -1, 1, 0, 0}; // 위 아래 상 하 좌 우 static int[] dy = {0, 0, 0, 0, -1, 1}; static int[] dz = {1,..