LeetCode221. 最大正方形

/**
221. 最大正方形
在一个由 0 和 1 组成的二维矩阵内,找到只包含 1 的最大正方形,并返回其面积。

示例:

输入: 

1 0 1 0 0
1 0 1 1 1
1 1 1 1 1
1 0 0 1 0

输出: 4

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/maximal-square
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
*/
class Solution {
public:
    static int min(int a,int b,int c) {
        b = b < c ? b : c;
        return a < b ? a : b;
    }
    int maximalSquare(vector>& matrix) {
        int row = matrix.size();
        if(row == 0) {
            return 0;
        }
        int col = matrix[0].size();
        if(col == 0) {
            return 0;
        }
        int max = '0';
        for(int i = 0; i < row && max == '0'; i++) {
            if(matrix[i][0] == '1') {
                max = '1';
            }
        }
        for(int i = 0; i < col && max == '0'; i++) {
            if(matrix[0][i] == '1') {
                max = '1';
            }
        }
        for(int i = 1; i < row; i++) {
            for(int j = 1; j < col; j++) {
                if(matrix[i][j] != '0') {
                    matrix[i][j] = min(matrix[i - 1][j - 1], matrix[i - 1][j], matrix[i][j - 1]) + 1;
                    max = matrix[i][j] > max ? matrix[i][j] : max;
                }
            }
        }
        return pow(max - '0', 2);
    }
};

 

你可能感兴趣的:(动态规划)