섬나라 아일랜드(BFS)
풀이에 Pointer 클래스를 사용한 것 이외에는 거의 비슷하다 import java.util.*; class Pointer{ int x; int y; Pointer(int x, int y){ this.x = x; this.y = y; } } class Main{ static int[] dx = {-1,0,1,0,-1,-1,1,1}; static int[] dy = {0,1,0,-1,-1,1,1,-1}; static int[][] board; static Queue Q = new LinkedList(); static int res = 0, n; public void Solution(){ for (int i = 0; i < n; i++){ for (int j = 0; j < n; j++){ if (boar..
2023. 9. 3.