Skip to content

Latest commit

 

History

History

1895

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

A k x k magic square is a k x k grid filled with integers such that every row sum, every column sum, and both diagonal sums are all equal. The integers in the magic square do not have to be distinct. Every 1 x 1 grid is trivially a magic square.

Given an m x n integer grid, return the size (i.e., the side length k) of the largest magic square that can be found within this grid.

 

Example 1:

Input: grid = [[7,1,4,5,6],[2,5,1,6,4],[1,5,4,3,2],[1,2,7,3,4]]
Output: 3
Explanation: The largest magic square has a size of 3.
Every row sum, column sum, and diagonal sum of this magic square is equal to 12.
- Row sums: 5+1+6 = 5+4+3 = 2+7+3 = 12
- Column sums: 5+5+2 = 1+4+7 = 6+3+3 = 12
- Diagonal sums: 5+4+3 = 6+4+2 = 12

Example 2:

Input: grid = [[5,1,3,1],[9,3,3,1],[1,3,3,8]]
Output: 2

 

Constraints:

  • m == grid.length
  • n == grid[i].length
  • 1 <= m, n <= 50
  • 1 <= grid[i][j] <= 106

Companies:
Wayfair

Related Topics:
Array, Dynamic Programming

Similar Questions:

Solution 1.

// OJ: https://leetcode.com/problems/largest-magic-square/
// Author: github.com/lzl124631x
// Time: O(MN * min(M, N)^3)
// Space: O(1)
class Solution {
    int M, N;
    bool isMagic(vector<vector<int>>& G, int x, int y, int len) {
        int a = 0, b = 0;
        for (int i = 0; i < len; ++i) {
            a += G[x + i][y + i];
            b += G[x + i][y + len - 1 - i];
        }
        if (a != b) return false;
        for (int i = 0; i < len; ++i) {
            int row = 0, col = 0;
            for (int j = 0; j < len; ++j) {
                row += G[x + i][y + j];
                col += G[x + j][y + i];
            }
            if (row != a || col != a) return false;
        }
        return true;
    }
public:
    int largestMagicSquare(vector<vector<int>>& G) {
        M = G.size(), N = G[0].size();
        for (int i = min(M, N); i >= 2; --i) {
            for (int x = 0; x <= M - i; ++x) {
                for (int y = 0; y <= N - i; ++y) {
                    if (isMagic(G, x, y, i)) return i;
                }
            }
        }
        return 1;
    }
};