Problem Description
Given a 3 x 3 grid filled with distinct numbers from 1 to 9, how many 3 x 3 magic square subgrids exist in a given row x col grid of integers? A magic square is defined as a grid where each row, column, and both diagonals all have the same sum.
Key Insights
- A valid magic square must contain distinct numbers from 1 to 9.
- The sum for each row, column, and diagonal in a 3 x 3 magic square should be 15.
- The grid can contain numbers from 0 to 15, but only the numbers 1 to 9 are considered for forming a magic square.
- The maximum number of 3 x 3 subgrids in a grid is restricted by its dimensions (row-2) x (col-2).
Space and Time Complexity
Time Complexity: O((row-2) * (col-2))
Space Complexity: O(1)
Solution
To solve the problem, we will iterate through each possible 3 x 3 subgrid within the input grid. For each subgrid, we will:
- Check if all numbers are distinct and within the range 1 to 9.
- Calculate the sum of each row, column, and the two diagonals to verify if they equal 15.
- Count how many valid magic squares we find.
The approach primarily uses nested loops to traverse the grid and a set to check for distinct values.