boj 1926 그림
-
boj)1926 - 그림PS/boj 2020. 10. 15. 18:16
import java.io.*; import java.util.*; public class boj_1926 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; static Queue q = new LinkedList(); static int[][] a; static boolean[][] v; static int n, m, size; static List sizeList = new ArrayList(); static int[] lx = {-1, 1, 0, 0}; static int[] ly = {0, 0, -1, 1}; public static void main(..