https://www.acmicpc.net/problem/17142 17142번: 연구소 3 인체에 치명적인 바이러스를 연구하던 연구소에 승원이가 침입했고, 바이러스를 유출하려고 한다. 바이러스는 활성 상태와 비활성 상태가 있다. 가장 처음에 모든 바이러스는 비활성 상태이고 www.acmicpc.net import java.util.*; import java.io.*; class 17142 { static class Virus { int x, y, time; Virus(int x, int y, int time) { this.x = x; this.y = y; this.time = time; } } static int N, M; static int[][] arr; static int[] dx = { -1, ..