-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
113 lines (88 loc) Β· 2.83 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package DFSandBFS.P2573;
import java.io.*;
import java.util.*;
public class Main {
static int N, M;
static int[][] map;
static int year = 0;
static int[] di = {-1, 0, 1, 0};
static int[] dj = {0, 1, 0, -1};
static Queue<Position> q = new LinkedList<>();
static int count;
static boolean[][] visited;
static int[][] temp;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/BFS/P2573/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
map = new int[N][M];
for (int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < M; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
if (map[i][j] != 0) q.offer(new Position(i, j));
}
}
while (true) {
if (q.isEmpty()) {
year = 0;
break;
}
visited = new boolean[N][M];
count = 0;
find(q.peek());
if (count != q.size()) break;
temp = new int[N][M];
int curSize = q.size();
for (int i = 0; i < curSize; i++) {
Position cur = q.poll();
for (int t = 0; t < 4; t++) {
int to_i = cur.i + di[t];
int to_j = cur.j + dj[t];
if (isValidPath(to_i, to_j) && map[to_i][to_j] == 0)
temp[cur.i][cur.j] --;
}
}
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
map[i][j] += temp[i][j];
if (map[i][j] < 0) map[i][j] = 0;
if (map[i][j] != 0) q.offer(new Position(i, j));
}
}
year ++;
}
System.out.println(year);
}
static void find(Position start) {
visited[start.i][start.j] = true;
count ++;
for (int t = 0; t < 4; t++) {
int to_i = start.i + di[t];
int to_j = start.j + dj[t];
if (isValidPath(to_i, to_j) && map[to_i][to_j] != 0 && !visited[to_i][to_j]) {
find(new Position(to_i, to_j));
}
}
}
static boolean isValidPath(int i, int j) {
return 0 <= i && i < N && 0 <= j && j < M;
}
}
class Position {
int i;
int j;
public Position(int i, int j) {
this.i = i;
this.j = j;
}
@Override
public String toString() {
return "Position{" +
"i=" + i +
", j=" + j +
'}';
}
}