-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
83 lines (65 loc) Β· 2.2 KB
/
Main.java
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package Simulation.P2636;
import java.io.*;
import java.util.*;
public class Main {
static int R, C, total;
static int[][] map;
static int[] di = {-1, 0, 1, 0};
static int[] dj = {0, 1, 0, -1};
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Simulation/P2636/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
R = Integer.parseInt(st.nextToken());
C = Integer.parseInt(st.nextToken());
map = new int[R][C];
for (int i = 0; i < R; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < C; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
if (map[i][j] == 1) total ++;
}
}
solve();
}
static void solve() {
Queue<Pos> air = new LinkedList<>();
Queue<Pos> cheese = new LinkedList<>();
boolean[][] visited = new boolean[R][C];
int time = 0;
air.add(new Pos(0, 0));
while (total > 0) {
time ++;
while (!air.isEmpty()) {
Pos p = air.poll();
visited[p.i][p.j] = true;
for (int k = 0; k < 4; k++) {
int to_i = p.i + di[k];
int to_j = p.j + dj[k];
if (!isValidPath(to_i, to_j) || visited[to_i][to_j]) continue;
visited[to_i][to_j] = true;
if (map[to_i][to_j] == 0) {
air.offer(new Pos(to_i, to_j));
} else {
cheese.offer(new Pos(to_i, to_j));
total --;
}
}
}
air.addAll(cheese);
cheese.clear();
}
System.out.println(time);
System.out.println(air.size());
}
static boolean isValidPath(int i, int j) {
return 0 <= i && i < R && 0 <= j && j < C;
}
static class Pos {
int i, j;
public Pos(int i, int j) {
this.i = i;
this.j = j;
}
}
}