📌  相关文章
📜  给定一个由“O”和“X”组成的矩阵,找到被“X”包围的最大子正方形

📅  最后修改于: 2022-05-13 01:57:22.391000             🧑  作者: Mango

给定一个由“O”和“X”组成的矩阵,找到被“X”包围的最大子正方形

给定一个矩阵,其中每个元素都是“O”或“X”,找到被“X”包围的最大子正方形。
在下面的文章中,假设给定的矩阵也是方阵。下面给出的代码可以很容易地扩展到矩形矩阵。

例子:

Input: mat[N][N] = { {'X', 'O', 'X', 'X', 'X'},
                     {'X', 'X', 'X', 'X', 'X'},
                     {'X', 'X', 'O', 'X', 'O'},
                     {'X', 'X', 'X', 'X', 'X'},
                     {'X', 'X', 'X', 'O', 'O'},
                    };
Output: 3
The square submatrix starting at (1, 1) is the largest
submatrix surrounded by 'X'

Input: mat[M][N] = { {'X', 'O', 'X', 'X', 'X', 'X'},
                     {'X', 'O', 'X', 'X', 'O', 'X'},
                     {'X', 'X', 'X', 'O', 'O', 'X'},
                     {'X', 'X', 'X', 'X', 'X', 'X'},
                     {'X', 'X', 'X', 'O', 'X', 'O'},
                    };
Output: 4
The square submatrix starting at (0, 2) is the largest
submatrix surrounded by 'X'

一个简单的解决方案是考虑每个方形子矩阵并检查是否所有角边都用“X”填充。该解决方案的时间复杂度为 O(N 4 )。
我们可以使用额外的空间在 O(N 3 ) 时间内解决这个问题。这个想法是创建两个辅助数组 hor[N][N] 和 ver[N][N]。 hor[i][j] 中存储的值是直到 mat[][] 中的 mat[i][j] 的水平连续 'X'字符数。类似地,存储在 ver[i][j] 中的值是在 mat[][] 中直到 mat[i][j] 的垂直连续 'X'字符的数量。

例子:

mat[6][6] =  X  O  X  X  X  X
             X  O  X  X  O  X
             X  X  X  O  O  X
             O  X  X  X  X  X
             X  X  X  O  X  O
             O  O  X  O  O  O

hor[6][6] = 1  0  1  2  3  4
            1  0  1  2  0  1
            1  2  3  0  0  1
            0  1  2  3  4  5
            1  2  3  0  1  0
            0  0  1  0  0  0

ver[6][6] = 1  0  1  1  1  1
            2  0  2  2  0  2
            3  1  3  0  0  3
            0  2  4  1  1  4
            1  3  5  0  2  0
            0  0  6  0  0  0

一旦我们在 hor[][] 和 ver[][] 中填充了值,我们从矩阵的最右下角开始,逐行向最左上角移动。对于每个访问过的条目 mat[i][j],我们比较 hor[i][j] 和 ver[i][j] 的值,并选择两个中较小的一个,因为我们需要一个正方形。让两个中较小的一个为“小”。在选择两个中较小的一个后,我们分别检查左边缘和上边缘是否同时存在 ver[][] 和 hor[][]。如果他们有相同的条目,那么我们找到了一个子方格。否则,我们尝试使用 small-1。

下面是上述想法的实现。

C++
// A C++ program to find  the largest subsquare
// surrounded by 'X' in a given matrix of 'O' and 'X'
#include 
using namespace std;
 
// Size of given matrix is N X N
#define N 6
 
// A utility function to find minimum of two numbers
int getMin(int x, int y) { return (x < y) ? x : y; }
 
// Returns size of maximum size subsquare matrix
// surrounded by 'X'
int findSubSquare(int mat[][N])
{
    int max = 0; // Initialize result
 
    // Initialize the left-top value in hor[][] and ver[][]
    int hor[N][N], ver[N][N];
    hor[0][0] = ver[0][0] = (mat[0][0] == 'X');
 
    // Fill values in hor[][] and ver[][]
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < N; j++)
        {
            if (mat[i][j] == 'O')
                ver[i][j] = hor[i][j] = 0;
            else
            {
                hor[i][j]
                    = (j == 0) ? 1 : hor[i][j - 1] + 1;
                ver[i][j]
                    = (i == 0) ? 1 : ver[i - 1][j] + 1;
            }
        }
    }
 
    // Start from the rightmost-bottommost corner element
    // and find the largest ssubsquare with the help of
    // hor[][] and ver[][]
    for (int i = N - 1; i >= 1; i--)
    {
        for (int j = N - 1; j >= 1; j--)
        {
            // Find smaller of values in hor[][] and ver[][]
            // A Square can only be made by taking smaller
            // value
            int small = getMin(hor[i][j], ver[i][j]);
 
            // At this point, we are sure that there is a
            // right vertical line and bottom horizontal
            // line of length at least 'small'.
 
            // We found a bigger square if following
            // conditions are met: 1)If side of square is
            // greater than max. 2)There is a left vertical
            // line of length >= 'small' 3)There is a top
            // horizontal line of length >= 'small'
            while (small > max)
            {
                if (ver[i][j - small + 1] >= small
                    && hor[i - small + 1][j] >= small)
                {
                    max = small;
                }
                small--;
            }
        }
    }
    return max;
}
 
// Driver code
int main()
{
    int mat[][N] = {
        { 'X', 'O', 'X', 'X', 'X', 'X' },
        { 'X', 'O', 'X', 'X', 'O', 'X' },
        { 'X', 'X', 'X', 'O', 'O', 'X' },
        { 'O', 'X', 'X', 'X', 'X', 'X' },
        { 'X', 'X', 'X', 'O', 'X', 'O' },
        { 'O', 'O', 'X', 'O', 'O', 'O' },
    };
   
    // Function call
    cout << findSubSquare(mat);
    return 0;
}


Java
// A JAVA program to find the
// largest subsquare surrounded
// by 'X' in a given matrix of
// 'O' and 'X'
import java.util.*;
 
class GFG
{
    // Size of given
    // matrix is N X N
    static int N = 6;
 
    // A utility function to
    // find minimum of two numbers
    static int getMin(int x, int y)
    {
        return (x < y) ? x : y;
    }
 
    // Returns size of maximum
    // size subsquare matrix
    // surrounded by 'X'
    static int findSubSquare(int mat[][])
    {
        int max = 0; // Initialize result
 
        // Initialize the left-top
        // value in hor[][] and ver[][]
        int hor[][] = new int[N][N];
        int ver[][] = new int[N][N];
        hor[0][0] = ver[0][0] = 'X';
 
        // Fill values in
        // hor[][] and ver[][]
        for (int i = 0; i < N; i++)
        {
            for (int j = 0; j < N; j++)
            {
                if (mat[i][j] == 'O')
                    ver[i][j] = hor[i][j] = 0;
                else
                {
                    hor[i][j]
                        = (j == 0) ? 1 : hor[i][j - 1] + 1;
                    ver[i][j]
                        = (i == 0) ? 1 : ver[i - 1][j] + 1;
                }
            }
        }
 
        // Start from the rightmost-
        // bottommost corner element
        // and find the largest
        // subsquare with the help
        // of hor[][] and ver[][]
        for (int i = N - 1; i >= 1; i--)
        {
            for (int j = N - 1; j >= 1; j--)
            {
                // Find smaller of values in
                // hor[][] and ver[][] A Square
                // can only be made by taking
                // smaller value
                int small = getMin(hor[i][j], ver[i][j]);
 
                // At this point, we are sure
                // that there is a right vertical
                // line and bottom horizontal
                // line of length at least 'small'.
 
                // We found a bigger square
                // if following conditions
                // are met:
                // 1)If side of square
                //   is greater than max.
                // 2)There is a left vertical
                //   line of length >= 'small'
                // 3)There is a top horizontal
                //   line of length >= 'small'
                while (small > max)
                {
                    if (ver[i][j - small + 1] >= small
                        && hor[i - small + 1][j] >= small)
                    {
                        max = small;
                    }
                    small--;
                }
            }
        }
        return max;
    }
 
    // Driver Code
    public static void main(String[] args)
    {
        // TODO Auto-generated method stub
 
        int mat[][] = { { 'X', 'O', 'X', 'X', 'X', 'X' },
                        { 'X', 'O', 'X', 'X', 'O', 'X' },
                        { 'X', 'X', 'X', 'O', 'O', 'X' },
                        { 'O', 'X', 'X', 'X', 'X', 'X' },
                        { 'X', 'X', 'X', 'O', 'X', 'O' },
                        { 'O', 'O', 'X', 'O', 'O', 'O' } };
       
        // Function call
        System.out.println(findSubSquare(mat));
    }
}
 
// This code is contributed
// by ChitraNayal


Python3
# A Python3 program to find the largest
# subsquare surrounded by 'X' in a given
# matrix of 'O' and 'X'
import math as mt
 
# Size of given matrix is N X N
N = 6
 
# A utility function to find minimum
# of two numbers
 
 
def getMin(x, y):
    if x < y:
        return x
    else:
        return y
 
# Returns size of Maximum size
# subsquare matrix surrounded by 'X'
 
 
def findSubSquare(mat):
 
    Max = 0  # Initialize result
 
    # Initialize the left-top value
    # in hor[][] and ver[][]
    hor = [[0 for i in range(N)]
           for i in range(N)]
    ver = [[0 for i in range(N)]
           for i in range(N)]
 
    if mat[0][0] == 'X':
        hor[0][0] = 1
        ver[0][0] = 1
 
    # Fill values in hor[][] and ver[][]
    for i in range(N):
 
        for j in range(N):
 
            if (mat[i][j] == 'O'):
                ver[i][j], hor[i][j] = 0, 0
            else:
                if j == 0:
                    ver[i][j], hor[i][j] = 1, 1
                else:
                    (ver[i][j],
                     hor[i][j]) = (ver[i - 1][j] + 1,
                                   hor[i][j - 1] + 1)
 
    # Start from the rightmost-bottommost corner
    # element and find the largest ssubsquare
    # with the help of hor[][] and ver[][]
    for i in range(N - 1, 0, -1):
 
        for j in range(N - 1, 0, -1):
 
            # Find smaller of values in hor[][] and
            # ver[][]. A Square can only be made by
            # taking smaller value
            small = getMin(hor[i][j], ver[i][j])
 
            # At this point, we are sure that there
            # is a right vertical line and bottom
            # horizontal line of length at least 'small'.
 
            # We found a bigger square if following
            # conditions are met:
            # 1)If side of square is greater than Max.
            # 2)There is a left vertical line
            #   of length >= 'small'
            # 3)There is a top horizontal line
            #   of length >= 'small'
            while (small > Max):
 
                if (ver[i][j - small + 1] >= small and
                        hor[i - small + 1][j] >= small):
 
                    Max = small
 
                small -= 1
 
    return Max
 
 
# Driver Code
mat = [['X', 'O', 'X', 'X', 'X', 'X'],
       ['X', 'O', 'X', 'X', 'O', 'X'],
       ['X', 'X', 'X', 'O', 'O', 'X'],
       ['O', 'X', 'X', 'X', 'X', 'X'],
       ['X', 'X', 'X', 'O', 'X', 'O'],
       ['O', 'O', 'X', 'O', 'O', 'O']]
 
# Function call
print(findSubSquare(mat))
 
# This code is contributed by
# Mohit kumar 29


C#
// A C# program to find the
// largest subsquare surrounded
// by 'X' in a given matrix of
// 'O' and 'X'
using System;
 
class GFG
{
    // Size of given
    // matrix is N X N
    static int N = 6;
 
    // A utility function to
    // find minimum of two numbers
    static int getMin(int x, int y)
    {
        return (x < y) ? x : y;
    }
 
    // Returns size of maximum
    // size subsquare matrix
    // surrounded by 'X'
    static int findSubSquare(int[, ] mat)
    {
        int max = 0; // Initialize result
 
        // Initialize the left-top
        // value in hor[][] and ver[][]
        int[, ] hor = new int[N, N];
        int[, ] ver = new int[N, N];
        hor[0, 0] = ver[0, 0] = 'X';
 
        // Fill values in
        // hor[][] and ver[][]
        for (int i = 0; i < N; i++)
        {
            for (int j = 0; j < N; j++)
            {
                if (mat[i, j] == 'O')
                    ver[i, j] = hor[i, j] = 0;
                else
                {
                    hor[i, j]
                        = (j == 0) ? 1 : hor[i, j - 1] + 1;
                    ver[i, j]
                        = (i == 0) ? 1 : ver[i - 1, j] + 1;
                }
            }
        }
 
        // Start from the rightmost-
        // bottommost corner element
        // and find the largest
        // subsquare with the help
        // of hor[][] and ver[][]
        for (int i = N - 1; i >= 1; i--)
        {
            for (int j = N - 1; j >= 1; j--)
            {
                // Find smaller of values in
                // hor[][] and ver[][] A Square
                // can only be made by taking
                // smaller value
                int small = getMin(hor[i, j], ver[i, j]);
 
                // At this point, we are sure
                // that there is a right vertical
                // line and bottom horizontal
                // line of length at least 'small'.
 
                // We found a bigger square
                // if following conditions
                // are met:
                // 1)If side of square
                // is greater than max.
                // 2)There is a left vertical
                // line of length >= 'small'
                // 3)There is a top horizontal
                // line of length >= 'small'
                while (small > max)
                {
                    if (ver[i, j - small + 1] >= small
                        && hor[i - small + 1, j] >= small)
                    {
                        max = small;
                    }
                    small--;
                }
            }
        }
        return max;
    }
 
    // Driver Code
    public static void Main()
    {
        // TODO Auto-generated method stub
 
        int[, ] mat = { { 'X', 'O', 'X', 'X', 'X', 'X' },
                        { 'X', 'O', 'X', 'X', 'O', 'X' },
                        { 'X', 'X', 'X', 'O', 'O', 'X' },
                        { 'O', 'X', 'X', 'X', 'X', 'X' },
                        { 'X', 'X', 'X', 'O', 'X', 'O' },
                        { 'O', 'O', 'X', 'O', 'O', 'O' } };
       
        // Function call
        Console.WriteLine(findSubSquare(mat));
    }
}
 
// This code is contributed
// by Akanksha Rai(Abby_akku)


PHP
= 1; $i--)
    {
        for ($j = $GLOBALS['N'] - 1; $j >= 1; $j--)
        {
            // Find smaller of values in
            // $hor and $ver A Square can
            // only be made by taking
            // smaller value
            $small = getMin($hor[$i][$j],
                            $ver[$i][$j]);
 
            // At this point, we are sure
            // that there is a right vertical
            // line and bottom horizontal
            // line of length at least '$small'.
 
            // We found a bigger square if
            // following conditions are met:
            // 1)If side of square is
            //   greater than $max.
            // 2)There is a left vertical
            //   line of length >= '$small'
            // 3)There is a top horizontal
            //   line of length >= '$small'
            while ($small > $max)
            {
                if ($ver[$i][$j - $small + 1] >= $small &&
                    $hor[$i - $small + 1][$j] >= $small)
                {
                    $max = $small;
                }
                $small--;
            }
        }
    }
    return $max;
}
 
// Driver Code
$mat = array(array('X', 'O', 'X', 'X', 'X', 'X'),
             array('X', 'O', 'X', 'X', 'O', 'X'),
             array('X', 'X', 'X', 'O', 'O', 'X'),
             array('O', 'X', 'X', 'X', 'X', 'X'),
             array('X', 'X', 'X', 'O', 'X', 'O'),
             array('O', 'O', 'X', 'O', 'O', 'O'));
 
// Function call
echo findSubSquare($mat);
 
// This code is contributed
// by ChitraNayal
?>


Javascript


C++
// A C++ program to find  the largest subsquare
// surrounded by 'X' in a given matrix of 'O' and 'X'
#include 
using namespace std;
 
// Size of given matrix is N X N
#define N 6
 
int maximumSubSquare(int arr[][N])
{
    pair dp[51][51];
    int maxside[51][51];
 
    // Initialize maxside with 0
    memset(maxside, 0, sizeof(maxside));
 
    int x = 0, y = 0;
 
    // Fill the dp matrix horizontally.
    // for contiguous 'X' increment the value of x,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
        x = 0;
        for (int j = 0; j < N; j++)
        {
            if (arr[i][j] == 'X')
                x += 1;
            else
                x = 0;
            dp[i][j].first = x;
        }
    }
 
    // Fill the dp matrix vertically.
    // For contiguous 'X' increment the value of y,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < N; j++)
        {
            if (arr[j][i] == 'X')
                y += 1;
            else
                y = 0;
            dp[j][i].second = y;
        }
    }
 
    // Now check , for every value of (i, j) if sub-square
    // is possible,
    // traverse back horizontally by value val, and check if
    // vertical contiguous
    // 'X'enfing at (i , j-val+1) is greater than equal to
    // val.
    // Similarly, check if traversing back vertically, the
    // horizontal contiguous
    // 'X'ending at (i-val+1, j) is greater than equal to
    // val.
    int maxval = 0, val = 0;
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < N; j++)
        {
            val = min(dp[i][j].first, dp[i][j].second);
            if (dp[i][j - val + 1].second >= val
                && dp[i - val + 1][j].first >= val)
                maxside[i][j] = val;
            else
                maxside[i][j] = 0;
 
            // store the final answer in maxval
            maxval = max(maxval, maxside[i][j]);
        }
    }
 
    // return the final answe.
    return maxval;
}
 
// Driver code
int main()
{
    int mat[][N] = {
        { 'X', 'O', 'X', 'X', 'X', 'X' },
        { 'X', 'O', 'X', 'X', 'O', 'X' },
        { 'X', 'X', 'X', 'O', 'O', 'X' },
        { 'O', 'X', 'X', 'X', 'X', 'X' },
        { 'X', 'X', 'X', 'O', 'X', 'O' },
        { 'O', 'O', 'X', 'O', 'O', 'O' },
    };
 
    // Function call
    cout << maximumSubSquare(mat);
    return 0;
}


Java
/*package whatever //do not write package name here */
import java.io.*;
import java.util.*;
 
class GFG
{
  static int N = 6;
 
  static int maximumSubSquare(int[][] arr)
  {
    int[][][] dp = new int[51][51][2];
    int[][] maxside = new int[51][51];
 
    // Initialize maxside with 0
    for (int[] row : maxside)
      Arrays.fill(row, 10);
 
    int x = 0, y = 0;
    // Fill the dp matrix horizontally.
    // for contiguous 'X' increment the value of x,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
      x = 0;
      for (int j = 0; j < N; j++)
      {
        if (arr[i][j] == 'X')
          x += 1;
        else
          x = 0;
        dp[i][j][0] = x;
      }
    }
 
    // Fill the dp matrix vertically.
    // For contiguous 'X' increment the value of y,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
      for (int j = 0; j < N; j++)
      {
        if (arr[j][i] == 'X')
          y += 1;
        else
          y = 0;
        dp[j][i][1] = y;
      }
    }
 
    // Now check , for every value of (i, j) if sub-square
    // is possible,
    // traverse back horizontally by value val, and check if
    // vertical contiguous
    // 'X'enfing at (i , j-val+1) is greater than equal to
    // val.
    // Similarly, check if traversing back vertically, the
    // horizontal contiguous
    // 'X'ending at (i-val+1, j) is greater than equal to
    // val.
    int maxval = 0, val = 0;
 
    for (int i = 0; i < N; i++)
    {
      for (int j = 0; j < N; j++)
      {
        val = Math.min(dp[i][j][0], dp[i][j][1]);
        if (dp[i][j - val + 1][1] >= val
            && dp[i - val + 1][j][0] >= val)
          maxside[i][j] = val;
        else
          maxside[i][j] = 0;
 
        // store the final answer in maxval
        maxval = Math.max(maxval, maxside[i][j]);
      }
    }
 
    // return the final answe.
    return maxval;
 
  }
 
  // Driver code
  public static void main (String[] args)
  {
    int mat[][] = {
      { 'X', 'O', 'X', 'X', 'X', 'X' },
      { 'X', 'O', 'X', 'X', 'O', 'X' },
      { 'X', 'X', 'X', 'O', 'O', 'X' },
      { 'O', 'X', 'X', 'X', 'X', 'X' },
      { 'X', 'X', 'X', 'O', 'X', 'O' },
      { 'O', 'O', 'X', 'O', 'O', 'O' },
    };
 
    // Function call
    System.out.println(maximumSubSquare(mat));
  }
}
 
// This code is contributed by rag2127.


Python3
# Python3 program to find  the largest
# subsquare surrounded by 'X' in a given
# matrix of 'O' and 'X'
 
# Size of given matrix is N X N
N = 6
 
def maximumSubSquare(arr):
     
    dp = [[[-1, -1] for i in range(51)]
                    for j in range(51)]
 
    # Initialize maxside with 0
    maxside = [[0 for i in range(51)]
                  for j in range(51)]
                   
    x = 0
    y = 0
     
    # Fill the dp matrix horizontally.
    # for contiguous 'X' increment the
    # value of x, otherwise make it 0
    for i in range(N):
        x = 0
         
        for j in range(N):
            if (arr[i][j] == 'X'):
                x += 1
            else:
                x = 0
                 
            dp[i][j][0] = x
 
    # Fill the dp matrix vertically.
    # For contiguous 'X' increment
    # the value of y, otherwise
    # make it 0
    for i in range(N):
        for j in range(N):
            if (arr[j][i] == 'X'):
                y += 1
            else:
                y = 0
                 
            dp[j][i][1] = y
     
    # Now check , for every value of (i, j) if sub-square
    # is possible,
    # traverse back horizontally by value val, and check if
    # vertical contiguous
    # 'X'enfing at (i , j-val+1) is greater than equal to
    # val.
    # Similarly, check if traversing back vertically, the
    # horizontal contiguous
    # 'X'ending at (i-val+1, j) is greater than equal to
    # val.
    maxval = 0
    val = 0
 
    for i in range(N):
        for j in range(N):
            val = min(dp[i][j][0],
                      dp[i][j][1])
                       
            if (dp[i][j - val + 1][1] >= val and
                dp[i - val + 1][j][0] >= val):
                maxside[i][j] = val
            else:
                maxside[i][j] = 0
 
            # Store the final answer in maxval
            maxval = max(maxval, maxside[i][j])
 
    # Return the final answe.
    return maxval
 
# Driver code
mat = [ [ 'X', 'O', 'X', 'X', 'X', 'X' ],
        [ 'X', 'O', 'X', 'X', 'O', 'X' ],
        [ 'X', 'X', 'X', 'O', 'O', 'X' ],
        [ 'O', 'X', 'X', 'X', 'X', 'X' ],
        [ 'X', 'X', 'X', 'O', 'X', 'O' ],
        [ 'O', 'O', 'X', 'O', 'O', 'O' ] ]
         
# Function call
print(maximumSubSquare(mat))
 
# This code is contributed by avanitrachhadiya2155


C#
// A C# program to find  the largest subsquare
// surrounded by 'X' in a given matrix of 'O' and 'X'
using System;
 
public class GFG{
     
    static int N = 6;
  
  static int maximumSubSquare(int[,] arr)
  {
    int[,,] dp = new int[51,51,2];
    int[,] maxside = new int[51,51];
  
    // Initialize maxside with 0
    for(int i = 0; i < 51; i++)
    {
         
        for(int j = 0; j < 51; j++)
        {
            maxside[i,j] = 10;
        }
    }
  
    int x = 0, y = 0;
    // Fill the dp matrix horizontally.
    // for contiguous 'X' increment the value of x,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
      x = 0;
      for (int j = 0; j < N; j++)
      {
        if (arr[i,j] == 'X')
          x += 1;
        else
          x = 0;
        dp[i,j,0] = x;
      }
    }
  
    // Fill the dp matrix vertically.
    // For contiguous 'X' increment the value of y,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
      for (int j = 0; j < N; j++)
      {
        if (arr[j,i] == 'X')
          y += 1;
        else
          y = 0;
        dp[j,i,1] = y;
      }
    }
  
    // Now check , for every value of (i, j) if sub-square
    // is possible,
    // traverse back horizontally by value val, and check if
    // vertical contiguous
    // 'X'enfing at (i , j-val+1) is greater than equal to
    // val.
    // Similarly, check if traversing back vertically, the
    // horizontal contiguous
    // 'X'ending at (i-val+1, j) is greater than equal to
    // val.
    int maxval = 0, val = 0;
  
    for (int i = 0; i < N; i++)
    {
      for (int j = 0; j < N; j++)
      {
        val = Math.Min(dp[i,j,0], dp[i,j,1]);
        if (dp[i,j - val + 1,1] >= val
            && dp[i - val + 1,j,0] >= val)
          maxside[i,j] = val;
        else
          maxside[i,j] = 0;
  
        // store the final answer in maxval
        maxval = Math.Max(maxval, maxside[i,j]);
      }
    }
  
    // return the final answe.
    return maxval;
  
  }
  
  // Driver code
     
    static public void Main (){
         
        int[,] mat = {
      { 'X', 'O', 'X', 'X', 'X', 'X' },
      { 'X', 'O', 'X', 'X', 'O', 'X' },
      { 'X', 'X', 'X', 'O', 'O', 'X' },
      { 'O', 'X', 'X', 'X', 'X', 'X' },
      { 'X', 'X', 'X', 'O', 'X', 'O' },
      { 'O', 'O', 'X', 'O', 'O', 'O' },
    };
  
    // Function call
    Console.WriteLine(maximumSubSquare(mat));
         
    }
}
 
// This code is contributed by patel2127


Javascript


输出
4

优化方法:

更优化的解决方案是在名为dp 的对矩阵中预先计算水平和垂直连续“X”的数量。现在对于dp的每个条目,我们都有一对 (int, int) 表示直到该点的最大连续“X”,即

  • dp[i][j].first 表示在该点之前水平拍摄的连续“X”。
  • dp[i][j].second 表示在该点之前垂直拍摄的连续“X”。

现在,可以形成一个正方形,以 dp[i][j] 作为右下角,边的长度最多为min(dp[i][j].first, dp[i][j].second)

因此,我们制作另一个矩阵maxside ,它将表示形成的最大正方形边,其右下角为 arr[i][j]。我们将尝试从正方形的属性中获得一些直觉,即正方形的所有边都是相等的。

让我们将可以获得的最大值存储为 val = min(dp[i][j].first, dp[i][j].second)。从点 (i, j),我们水平返回距离 Val,并检查直到该点的最小垂直连续“X”是否等于 Val。

同样,我们垂直返回距离 Val 并检查直到该点的最小水平连续“X”是否等于 Val?在这里,我们利用了正方形的所有边都相等的事实。

下面是上述思想的实现:

C++

// A C++ program to find  the largest subsquare
// surrounded by 'X' in a given matrix of 'O' and 'X'
#include 
using namespace std;
 
// Size of given matrix is N X N
#define N 6
 
int maximumSubSquare(int arr[][N])
{
    pair dp[51][51];
    int maxside[51][51];
 
    // Initialize maxside with 0
    memset(maxside, 0, sizeof(maxside));
 
    int x = 0, y = 0;
 
    // Fill the dp matrix horizontally.
    // for contiguous 'X' increment the value of x,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
        x = 0;
        for (int j = 0; j < N; j++)
        {
            if (arr[i][j] == 'X')
                x += 1;
            else
                x = 0;
            dp[i][j].first = x;
        }
    }
 
    // Fill the dp matrix vertically.
    // For contiguous 'X' increment the value of y,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < N; j++)
        {
            if (arr[j][i] == 'X')
                y += 1;
            else
                y = 0;
            dp[j][i].second = y;
        }
    }
 
    // Now check , for every value of (i, j) if sub-square
    // is possible,
    // traverse back horizontally by value val, and check if
    // vertical contiguous
    // 'X'enfing at (i , j-val+1) is greater than equal to
    // val.
    // Similarly, check if traversing back vertically, the
    // horizontal contiguous
    // 'X'ending at (i-val+1, j) is greater than equal to
    // val.
    int maxval = 0, val = 0;
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < N; j++)
        {
            val = min(dp[i][j].first, dp[i][j].second);
            if (dp[i][j - val + 1].second >= val
                && dp[i - val + 1][j].first >= val)
                maxside[i][j] = val;
            else
                maxside[i][j] = 0;
 
            // store the final answer in maxval
            maxval = max(maxval, maxside[i][j]);
        }
    }
 
    // return the final answe.
    return maxval;
}
 
// Driver code
int main()
{
    int mat[][N] = {
        { 'X', 'O', 'X', 'X', 'X', 'X' },
        { 'X', 'O', 'X', 'X', 'O', 'X' },
        { 'X', 'X', 'X', 'O', 'O', 'X' },
        { 'O', 'X', 'X', 'X', 'X', 'X' },
        { 'X', 'X', 'X', 'O', 'X', 'O' },
        { 'O', 'O', 'X', 'O', 'O', 'O' },
    };
 
    // Function call
    cout << maximumSubSquare(mat);
    return 0;
}

Java

/*package whatever //do not write package name here */
import java.io.*;
import java.util.*;
 
class GFG
{
  static int N = 6;
 
  static int maximumSubSquare(int[][] arr)
  {
    int[][][] dp = new int[51][51][2];
    int[][] maxside = new int[51][51];
 
    // Initialize maxside with 0
    for (int[] row : maxside)
      Arrays.fill(row, 10);
 
    int x = 0, y = 0;
    // Fill the dp matrix horizontally.
    // for contiguous 'X' increment the value of x,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
      x = 0;
      for (int j = 0; j < N; j++)
      {
        if (arr[i][j] == 'X')
          x += 1;
        else
          x = 0;
        dp[i][j][0] = x;
      }
    }
 
    // Fill the dp matrix vertically.
    // For contiguous 'X' increment the value of y,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
      for (int j = 0; j < N; j++)
      {
        if (arr[j][i] == 'X')
          y += 1;
        else
          y = 0;
        dp[j][i][1] = y;
      }
    }
 
    // Now check , for every value of (i, j) if sub-square
    // is possible,
    // traverse back horizontally by value val, and check if
    // vertical contiguous
    // 'X'enfing at (i , j-val+1) is greater than equal to
    // val.
    // Similarly, check if traversing back vertically, the
    // horizontal contiguous
    // 'X'ending at (i-val+1, j) is greater than equal to
    // val.
    int maxval = 0, val = 0;
 
    for (int i = 0; i < N; i++)
    {
      for (int j = 0; j < N; j++)
      {
        val = Math.min(dp[i][j][0], dp[i][j][1]);
        if (dp[i][j - val + 1][1] >= val
            && dp[i - val + 1][j][0] >= val)
          maxside[i][j] = val;
        else
          maxside[i][j] = 0;
 
        // store the final answer in maxval
        maxval = Math.max(maxval, maxside[i][j]);
      }
    }
 
    // return the final answe.
    return maxval;
 
  }
 
  // Driver code
  public static void main (String[] args)
  {
    int mat[][] = {
      { 'X', 'O', 'X', 'X', 'X', 'X' },
      { 'X', 'O', 'X', 'X', 'O', 'X' },
      { 'X', 'X', 'X', 'O', 'O', 'X' },
      { 'O', 'X', 'X', 'X', 'X', 'X' },
      { 'X', 'X', 'X', 'O', 'X', 'O' },
      { 'O', 'O', 'X', 'O', 'O', 'O' },
    };
 
    // Function call
    System.out.println(maximumSubSquare(mat));
  }
}
 
// This code is contributed by rag2127.

Python3

# Python3 program to find  the largest
# subsquare surrounded by 'X' in a given
# matrix of 'O' and 'X'
 
# Size of given matrix is N X N
N = 6
 
def maximumSubSquare(arr):
     
    dp = [[[-1, -1] for i in range(51)]
                    for j in range(51)]
 
    # Initialize maxside with 0
    maxside = [[0 for i in range(51)]
                  for j in range(51)]
                   
    x = 0
    y = 0
     
    # Fill the dp matrix horizontally.
    # for contiguous 'X' increment the
    # value of x, otherwise make it 0
    for i in range(N):
        x = 0
         
        for j in range(N):
            if (arr[i][j] == 'X'):
                x += 1
            else:
                x = 0
                 
            dp[i][j][0] = x
 
    # Fill the dp matrix vertically.
    # For contiguous 'X' increment
    # the value of y, otherwise
    # make it 0
    for i in range(N):
        for j in range(N):
            if (arr[j][i] == 'X'):
                y += 1
            else:
                y = 0
                 
            dp[j][i][1] = y
     
    # Now check , for every value of (i, j) if sub-square
    # is possible,
    # traverse back horizontally by value val, and check if
    # vertical contiguous
    # 'X'enfing at (i , j-val+1) is greater than equal to
    # val.
    # Similarly, check if traversing back vertically, the
    # horizontal contiguous
    # 'X'ending at (i-val+1, j) is greater than equal to
    # val.
    maxval = 0
    val = 0
 
    for i in range(N):
        for j in range(N):
            val = min(dp[i][j][0],
                      dp[i][j][1])
                       
            if (dp[i][j - val + 1][1] >= val and
                dp[i - val + 1][j][0] >= val):
                maxside[i][j] = val
            else:
                maxside[i][j] = 0
 
            # Store the final answer in maxval
            maxval = max(maxval, maxside[i][j])
 
    # Return the final answe.
    return maxval
 
# Driver code
mat = [ [ 'X', 'O', 'X', 'X', 'X', 'X' ],
        [ 'X', 'O', 'X', 'X', 'O', 'X' ],
        [ 'X', 'X', 'X', 'O', 'O', 'X' ],
        [ 'O', 'X', 'X', 'X', 'X', 'X' ],
        [ 'X', 'X', 'X', 'O', 'X', 'O' ],
        [ 'O', 'O', 'X', 'O', 'O', 'O' ] ]
         
# Function call
print(maximumSubSquare(mat))
 
# This code is contributed by avanitrachhadiya2155

C#

// A C# program to find  the largest subsquare
// surrounded by 'X' in a given matrix of 'O' and 'X'
using System;
 
public class GFG{
     
    static int N = 6;
  
  static int maximumSubSquare(int[,] arr)
  {
    int[,,] dp = new int[51,51,2];
    int[,] maxside = new int[51,51];
  
    // Initialize maxside with 0
    for(int i = 0; i < 51; i++)
    {
         
        for(int j = 0; j < 51; j++)
        {
            maxside[i,j] = 10;
        }
    }
  
    int x = 0, y = 0;
    // Fill the dp matrix horizontally.
    // for contiguous 'X' increment the value of x,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
      x = 0;
      for (int j = 0; j < N; j++)
      {
        if (arr[i,j] == 'X')
          x += 1;
        else
          x = 0;
        dp[i,j,0] = x;
      }
    }
  
    // Fill the dp matrix vertically.
    // For contiguous 'X' increment the value of y,
    // otherwise make it 0
    for (int i = 0; i < N; i++)
    {
      for (int j = 0; j < N; j++)
      {
        if (arr[j,i] == 'X')
          y += 1;
        else
          y = 0;
        dp[j,i,1] = y;
      }
    }
  
    // Now check , for every value of (i, j) if sub-square
    // is possible,
    // traverse back horizontally by value val, and check if
    // vertical contiguous
    // 'X'enfing at (i , j-val+1) is greater than equal to
    // val.
    // Similarly, check if traversing back vertically, the
    // horizontal contiguous
    // 'X'ending at (i-val+1, j) is greater than equal to
    // val.
    int maxval = 0, val = 0;
  
    for (int i = 0; i < N; i++)
    {
      for (int j = 0; j < N; j++)
      {
        val = Math.Min(dp[i,j,0], dp[i,j,1]);
        if (dp[i,j - val + 1,1] >= val
            && dp[i - val + 1,j,0] >= val)
          maxside[i,j] = val;
        else
          maxside[i,j] = 0;
  
        // store the final answer in maxval
        maxval = Math.Max(maxval, maxside[i,j]);
      }
    }
  
    // return the final answe.
    return maxval;
  
  }
  
  // Driver code
     
    static public void Main (){
         
        int[,] mat = {
      { 'X', 'O', 'X', 'X', 'X', 'X' },
      { 'X', 'O', 'X', 'X', 'O', 'X' },
      { 'X', 'X', 'X', 'O', 'O', 'X' },
      { 'O', 'X', 'X', 'X', 'X', 'X' },
      { 'X', 'X', 'X', 'O', 'X', 'O' },
      { 'O', 'O', 'X', 'O', 'O', 'O' },
    };
  
    // Function call
    Console.WriteLine(maximumSubSquare(mat));
         
    }
}
 
// This code is contributed by patel2127

Javascript


输出
4

时间复杂度: O(N 2 )
辅助空间复杂度:O(N 2 )