[백준 4963] 섬의 개수
출처 : https://www.acmicpc.net/problem/4963 BFS문제입니다 전체 소스 입니다 public class Q4963 { public static int[] nX = {-1, 0, 1, -1, 1, -1, 0, 1}; public static int[] nY = {-1, -1, -1, 0, 0, 1, 1, 1}; public static void main(String[] args) throws IOException{ Q4963 to = new Q4963(); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int w; int h; int[][] arr; whil..
2019. 1. 16.