미생물 격리[swexpertacademy]
링크 https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV597vbqAH0DFAVl 활용가능 장치 구조체, 새로운 맵(2차원배열) import java.util.Scanner; public class Solution { public static int T, N, M, K;// N 크기 M 시간, K 개수 public static int[] dx = new int[] { 0, -1, 1, 0, 0 }; public static int[] dy = new int[] { 0, 0, 0, -1, 1 }; public static Node[][] map = new Node[1020][1020]; public static No..