제출 코드
- 사용 알고리즘 :
bfs
바이러스 정보를 class로 구현하고, CompareTo를 오버라이딩 해 바이러스 번호순으로 정렬했다.
리스트에 바이러스 정보를 넣어두고 매 시간마다 사방탐색으로 주변에 바이러스를 퍼트리는 방식.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package gold;
import java.io.*;
import java.util.*;
public class G18405_competitiveContagion {
static int[] di = {-1, 0, 1, 0};
static int[] dj = {0, 1, 0, -1};
static class Node implements Comparable<Node>{
int i, j, virus;
Node(int i, int j, int virus){
this.i = i;
this.j = j;
this.virus = virus;
}
@Override
public int compareTo(Node o) {
return this.virus - o.virus;
}
}
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int N = Integer.parseInt(st.nextToken());
int K = Integer.parseInt(st.nextToken());
List<Node> virus = new ArrayList<Node>();
int[][] map = new int[N][N];
for(int i=0; i<N; i++) {
st = new StringTokenizer(br.readLine());
for(int j=0; j<N; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
if(map[i][j] != 0) virus.add(new Node(i, j, map[i][j]));
}
}
st = new StringTokenizer(br.readLine());
int S = Integer.parseInt(st.nextToken());
int X = Integer.parseInt(st.nextToken());
int Y = Integer.parseInt(st.nextToken());
for(int s=0; s<S; s++) {
Collections.sort(virus);
int size = virus.size();
for(int i=0; i<size; i++) {
Node n = virus.get(0);
virus.remove(0);
for(int d=0; d<4; d++) {
int ni = n.i + di[d];
int nj = n.j + dj[d];
if(ni<0 || ni>=N || nj<0 || nj>=N || map[ni][nj]!=0) continue;
map[ni][nj] = n.virus;
virus.add(new Node(ni, nj, n.virus));
}
}
}
System.out.println(map[X-1][Y-1]);
}
}