D***n 发帖数: 149 | 1 原题是
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle
containing all ones and return its area.
变化后,只要四边全是1的rectangle,里面有0's也算..
Largest Rectangle in Histogram的方法在这好像用不上啊.
有 O ( n^2)的解法没? | j******2 发帖数: 362 | 2 这个150上有,18.11,建立两个辅助矩阵,存每个点右边的线长和下面的线长。
rectangle
【在 D***n 的大作中提到】 : 原题是 : Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle : containing all ones and return its area. : 变化后,只要四边全是1的rectangle,里面有0's也算.. : Largest Rectangle in Histogram的方法在这好像用不上啊. : 有 O ( n^2)的解法没?
| D***n 发帖数: 149 | 3 不是一样的吧。
150上的是sub square matrix... leetcode上的是sub rectangle啊... |
|