221. Maximal Square

来源:互联网 发布:mysql的insert语句 编辑:程序博客网 时间:2024/06/06 13:59

Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.

For example, given the following matrix:

1 0 1 0 01 0 1 1 11 1 1 1 11 0 0 1 0

Return 4.


用动态规划,下面是别人的解释。

Well, this problem desires for the use of dynamic programming. They key to any DP problem is to come up with the state equation. In this problem, we define the state to be the maximal size of the square that can be achieved at point (i, j), denoted as P[i][j]. Remember that we use size instead of square as the state (square = size^2).

Now let's try to come up with the formula for P[i][j].

First, it is obvious that for the topmost row (i = 0) and the leftmost column (j = 0), P[i][j] = matrix[i][j]. This is easily understood. Let's suppose that the topmost row of matrix is like [1, 0, 0, 1]. Then we can immediately know that the first and last point can be a square of size 1 while the two middle points cannot make any square, giving a size of 0. Thus, P = [1, 0, 0, 1], which is the same as matrix. The case is similar for the leftmost column. Till now, the boundary conditions of this DP problem are solved.

Let's move to the more general case for P[i][j] in which i > 0 and j > 0. First of all, let's see another simple case in whichmatrix[i][j] = 0. It is obvious that P[i][j] = 0 too. Why? Well, since matrix[i][j] = 0, no square will contain matrix[i][j]. According to our definition of P[i][j]P[i][j] is also 0.

Now we are almost done. The only unsolved case is matrix[i][j] = 1. Let's see an example.

Suppose matrix = [[0, 1], [1, 1]], it is obvious that P[0][0] = 0, P[0][1] = P[1][0] = 1, what about P[1][1]? Well, to give a square of size larger than 1 in P[1][1], all of its three neighbors (left, up, left-up) should be non-zero, right? In this case, the left-up neighbor P[0][0] = 0, so P[1][1] can only be 1, which means that it contains the square of itself.

Now you are near the solution. In fact, P[i][j] = min(P[i - 1][j], P[i][j - 1], P[i - 1][j - 1]) + 1 in this case.

Taking all these together, we have the following state equations.

  1. P[0][j] = matrix[0][j] (topmost row);
  2. P[i][0] = matrix[i][0] (leftmost column);
  3. For i > 0 and j > 0: if matrix[i][j] = 0P[i][j] = 0; if matrix[i][j] = 1P[i][j] = min(P[i - 1][j], P[i][j - 1], P[i - 1][j - 1]) + 1.

Putting them into codes, and maintain a variable maxsize to record the maximum size of the square we have seen, we have the following (unoptimized) solution.

这里说可以用row*col的空间来做

代码是我按照他的写的: 

class Solution {public:    int maximalSquare(vector<vector<char>>& matrix) {        int row = matrix.size();        if(row == 0) return 0;        int col = matrix[0].size();        vector<vector<int>> dp(row, vector<int>(col,0));        int maxnum = 0;        for(int i = 0; i < col; i++){            dp[0][i] = matrix[0][i]-'0';            maxnum = max(maxnum, dp[0][i]);        }        for(int j = 0; j < row; j++){            dp[j][0] = matrix[j][0]-'0';            maxnum = max(maxnum, dp[j][0]);        }        for(int i = 1; i < row; i++){            for(int j = 1; j < col; j++){                if(matrix[i][j] == '0')                 dp[i][j] = 0;                else                dp[i][j] = min(dp[i-1][j], min(dp[i][j-1], dp[i-1][j-1]))+1;                maxnum = max(maxnum, dp[i][j]);            }        }        return maxnum*maxnum;    }};

2.Now let's try to optimize the above solution. As can be seen, each time when we update size[i][j], we only need size[i][j - 1], size[i - 1][j - 1] (at the previous left column) and size[i - 1][j] (at the current column). So we do not need to maintain the full m*n matrix. In fact, keeping two columns is enough. Now we have the following optimized solution.

这里是说可以用两个数组空间来做

int maximalSquare(vector<vector<char>>& matrix) {int m = matrix.size();if (!m) return 0;int n = matrix[0].size();vector<int> pre(m, 0);vector<int> cur(m, 0);int maxsize = 0;for (int i = 0; i < m; i++) {pre[i] = matrix[i][0] - '0';maxsize = max(maxsize, pre[i]);}for (int j = 1; j < n; j++) {cur[0] = matrix[0][j] - '0';maxsize = max(maxsize, cur[0]);for (int i = 1; i < m; i++) {if (matrix[i][j] == '1') {cur[i] = min(cur[i - 1], min(pre[i - 1], pre[i])) + 1;maxsize = max(maxsize, cur[i]);}}swap(pre, cur);fill(cur.begin(), cur.end(), 0);}return maxsize * maxsize;}


3.Now you see the solution is finished? In fact, it can still be optimized! In fact, we need not maintain two vectors and one is enough. If you want to explore this idea, please refer to the answers provided by @stellari below. Moreover, in the code above, we distinguish between the 0-th row and other rows since the 0-th row has no row above it. In fact, we can make all the m rows the same by padding a 0 row on the top (in the following code, we pad a 0 on top of dp). Finally, we will have the following short code :) If you find it hard to understand, try to run it using your pen and paper and notice how it realizes what the two-vector solution does using only one vector.

这里说是用一维数组来做,用两个变量来记录

int maximalSquare(vector<vector<char>>& matrix) {    if (matrix.empty()) return 0;    int m = matrix.size(), n = matrix[0].size();    vector<int> dp(m + 1, 0);    int maxsize = 0, pre = 0;    for (int j = 0; j < n; j++) {        for (int i = 1; i <= m; i++) {            int temp = dp[i];            if (matrix[i - 1][j] == '1') {                dp[i] = min(dp[i], min(dp[i - 1], pre)) + 1;                maxsize = max(maxsize, dp[i]);            }            else dp[i] = 0;             pre = temp;        }    }    return maxsize * maxsize;}


0 0
原创粉丝点击