-
Notifications
You must be signed in to change notification settings - Fork 481
/
0827.java
42 lines (40 loc) · 1.35 KB
/
0827.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
class Solution {
public int largestIsland(int[][] g) {
List<Integer> data = new ArrayList();
data.add(0); data.add(0);
int r = g.length, c = g[0].length;
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
if (g[i][j] == 1) data.add(dfs(i, j, data.size(), g));
}
}
int res = 0;
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
if (g[i][j] != 0) continue;
Set<Integer> s = new HashSet();
int tmp = 0;
for (int[] d : dire) {
int color = check(i + d[0], j + d[1], g);
if (!s.add(color)) continue;
tmp += data.get(color);
}
res = Math.max(res, tmp + 1);
}
}
return res == 0 ? r * c : res;
}
private int[][] dire = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
private int check(int i, int j, int[][] g) {
return (i < 0 || j < 0 || i >= g.length || j >= g[0].length) ? 0 : g[i][j];
}
private int dfs(int i, int j, int color, int[][] g) {
if (check(i, j, g) != 1) return 0;
g[i][j] = color;
int res = 1;
for (int[] d : dire) {
res += dfs(d[0] + i, d[1] + j, color, g);
}
return res;
}
}