Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given an NxN binary matrix (containing only 0's or 1's), how can we go about finding largest rectangle containing all 0's?

Example:

      I
    0 0 0 0 1 0
    0 0 1 0 0 1
II->0 0 0 0 0 0
    1 0 0 0 0 0
    0 0 0 0 0 1 <--IV
    0 0 1 0 0 0
            IV 

is a 6×6 binary matrix; the return value in this case will be Cell 1: (2, 1) and Cell 2: (4, 4). The resulting sub-matrix can be square or rectangular. The return value can also be the size of the largest sub-matrix of all 0's, in this example 3 × 4.

share|improve this question
1  
Please consider changing the accepted answer to J.F. Sebastian's answer, which is now correct and has optimal complexity. – j_random_hacker Jan 15 '11 at 4:18
1  
Please check very similar (I'd say duplicate) questions: stackoverflow.com/questions/7770945/… , stackoverflow.com/a/7353193/684229 . The solution is O(n). – Tomas Mar 29 '12 at 20:15

4 Answers

up vote 13 down vote accepted

Here's a solution based on the "Largest Rectangle in a Histogram" problem suggested by @j_random_hacker in the comments:

[Algorithm] works by iterating through rows from top to bottom, for each row solving this problem, where the "bars" in the "histogram" consist of all unbroken upward trails of zeros that start at the current row (a column has height 0 if it has a 1 in the current row).

The input matrix mat may be an arbitrary iterable e.g., a file or a network stream. Only one row is required to be available at a time.

#!/usr/bin/env python
from collections import namedtuple
from operator import mul

Info = namedtuple('Info', 'start height')

def max_size(mat, value=0):
    """Find height, width of the largest rectangle containing all `value`'s."""
    it = iter(mat)
    hist = [(el==value) for el in next(it, [])]
    max_size = max_rectangle_size(hist)
    for row in it:
        hist = [(1+h) if el == value else 0 for h, el in zip(hist, row)]
        max_size = max(max_size, max_rectangle_size(hist), key=area)
    return max_size

def max_rectangle_size(histogram):
    """Find height, width of the largest rectangle that fits entirely under
    the histogram.
    """
    stack = []
    top = lambda: stack[-1]
    max_size = (0, 0) # height, width of the largest rectangle
    pos = 0 # current position in the histogram
    for pos, height in enumerate(histogram):
        start = pos # position where rectangle starts
        while True:
            if not stack or height > top().height:
                stack.append(Info(start, height)) # push
            elif stack and height < top().height:
                max_size = max(max_size, (top().height, (pos - top().start)),
                               key=area)
                start, _ = stack.pop()
                continue
            break # height == top().height goes here

    pos += 1
    for start, height in stack:
        max_size = max(max_size, (height, (pos - start)), key=area)    
    return max_size

def area(size):
    return reduce(mul, size)

The solution is O(N), where N is the number of elements in a matrix. It requires O(ncols) additional memory, where ncols is the number of columns in a matrix.

Latest version with tests is at https://gist.github.com/776423

share|improve this answer
Good try, but this fails max_size([[0,0,0,0,1,1,1], [0,0,0,0,0,0,0], [0,0,0,1,1,1,1], [0,0,1,1,1,1,1]] + [[1,0,1,1,1,1,1]] * 3), returning (2, 4) when there is a 3x3 square in the top left. – j_random_hacker Jan 14 '11 at 2:02
The basic problem is that it's not always sufficient to track just (several) largest-area rectangles of neighbouring points as you're doing here. The only O(N) algorithm that I know to be correct works by iterating through rows from top to bottom, for each row solving this problem: stackoverflow.com/questions/4311694/…, where the "bars" in the "histogram" consist of all unbroken upward trails of zeros that start at the current row (a column has height 0 if it has a 1 in the current row). – j_random_hacker Jan 14 '11 at 2:08
@j_random_hacker: Thanks for the counter-example. – J.F. Sebastian Jan 14 '11 at 8:20
2  
@j_random_hacker: I've updated my answer to use "histogram"-based algorithm. – J.F. Sebastian Jan 14 '11 at 12:45
Looks good, +2! :) – j_random_hacker Jan 15 '11 at 4:14

Please take a look at Maximize the rectangular area under Histogram and then continue reading the solution below.

Traverse the matrix once and store the following;

For x=1 to N and y=1 to N    
F[x][y] = 1 + F[x-1][y] if A[x][y] is 0 , else 0

Then for each row for x=N to 1 
We have F[x] -> array with heights of the histograms with base at x.
Use O(N) algorithm to find the largest area of rectangle in this histogram = H[x]

From all areas computed, report the largest.

Time complexity is O(N*N)

Example:

Initial array    F[x][y] array
 0 0 0 0 1 0     1 1 1 1 0 1
 0 0 1 0 0 1     2 2 0 2 1 0
 0 0 0 0 0 0     3 3 1 3 2 1
 1 0 0 0 0 0     0 4 2 4 3 2
 0 0 0 0 0 1     1 5 3 5 4 0
 0 0 1 0 0 0     1 6 0 6 5 1

 For x = N to 1
 H[6] = 1 6 0 6 5 1 -> 10 (5*2)
 H[5] = 1 5 3 5 4 0 -> 12 (3*4)
 H[4] = 0 4 2 4 3 2 -> 10 (2*5)
 H[3] = 3 3 1 3 2 1 -> 6 (3*2)
 H[2] = 2 2 0 2 1 0 -> 4 (2*2)
 H[1] = 1 1 1 1 0 1 -> 4 (1*4)

 The largest area is thus H[5] = 12
share|improve this answer
nice explanation with example – Peter Jan 22 at 15:00

Similar question from last year. Use dynamic programming.

share|improve this answer
1  
No, it's different. Finding the largest square uses an obvious DP algorithm; finding the largest rectangle uses a completely different (and non-trivial to discover) DP algorithm. – j_random_hacker Jan 11 '11 at 17:24
You are right. Answer updated. – rics Jan 12 '11 at 9:01
Solution for rectangular block is more complex. Compare Python implementations in stackoverflow.com/questions/1726632/… and stackoverflow.com/questions/2478447/… – J.F. Sebastian Jan 12 '11 at 16:42
I see you edited your answer, thanks, but I will let my -1 stand as I still think it is not really relevant. – j_random_hacker Jan 14 '11 at 3:03

there is a very naive algorithm that runs in O(N^6) time. just maintain two indexes in the matrix (O(N^4) time), and determine whether the rectangle defined by them is correct (O(N^2) time).

share|improve this answer
forget about this, DP is applicable as there is substructure. – sisis Mar 19 '10 at 15:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.