forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_302.java
63 lines (57 loc) · 1.96 KB
/
_302.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
package com.fishercoder.solutions;
/**
* An image is represented by a binary matrix with 0 as a white pixel and 1 as a black pixel. The black pixels are connected, i.e., there is only one black region. Pixels are connected horizontally and vertically. Given the location (x, y) of one of the black pixels, return the area of the smallest (axis-aligned) rectangle that encloses all black pixels.
For example, given the following image:
[
"0010",
"0110",
"0100"
]
and x = 0, y = 2,
Return 6.
*/
public class _302 {
class Solution {
private char[][] image;
public int minArea(char[][] iImage, int x, int y) {
image = iImage;
int m = image.length;
int n = image[0].length;
int left = searchColumns(0, y, 0, m, true);
int right = searchColumns(y + 1, n, 0, m, false);
int top = searchRows(0, x, left, right, true);
int bottom = searchRows(x + 1, m, left, right, false);
return (right - left) * (bottom - top);
}
private int searchColumns(int i, int j, int top, int bottom, boolean opt) {
while (i != j) {
int k = top;
int mid = (i + j) / 2;
while (k < bottom && image[k][mid] == '0') {
++k;
}
if (k < bottom == opt) {
j = mid;
} else {
i = mid + 1;
}
}
return i;
}
private int searchRows(int i, int j, int left, int right, boolean opt) {
while (i != j) {
int k = left;
int mid = (i + j) / 2;
while (k < right && image[mid][k] == '0') {
++k;
}
if (k < right == opt) {
j = mid;
} else {
i = mid + 1;
}
}
return i;
}
}
}