码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 221: Maximal Square

时间:2017-09-18 14:44:37      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:etc   mat   log   als   ima   ++   i++   des   nim   

Note:

For square, the minimum size of  topleft and top and left decides the square of the result.

class Solution {
    public int maximalSquare(char[][] matrix) {
        if (matrix.length == 0) return 0;
        int result = 0;
        int[][] dp = new int[matrix.length + 1][matrix[0].length + 1];
        for (int i = 1; i <= matrix.length; i++) {
            for (int j = 1; j <= matrix[0].length; j++) {
                if (matrix[i - 1][j - 1] == ‘1‘) {
                    dp[i][j] = Math.min(Math.min(dp[i - 1][j], dp[i][j - 1]), dp[i - 1][j - 1]) + 1;
                    result = Math.max(dp[i][j], result);
                }
            }
        }
        return result*result;
    }
}

 

LeetCode 221: Maximal Square

标签:etc   mat   log   als   ima   ++   i++   des   nim   

原文地址:http://www.cnblogs.com/shuashuashua/p/7542590.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!