백준 2573 빙산
-
boj)2573 - 빙산PS/boj 2020. 10. 24. 12:39
import java.io.*; import java.util.*; public class boj_2573 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; static int N, M, nx, ny; static int[][][] map; static int[] dx = {-1, 1, 0, 0}; static int[] dy = {0, 0, -1, 1}; public static void main(String[] args) throws IOException { st = new StringTokenizer(br.readLine()); N = Integer.pa..