Problem · Matrix
Sub-matrix Sums
Learn this problemProblem statement
Given an n x n matrix of positive integers and an integer k, return the largest size s such that every s x s sub-matrix has a sum less than or equal to k.
Return 0 when no positive square size satisfies the condition.
Function
maxSubSquareMatrixSumLessThanK(matrix: int[][], k: int) → intComplete maxSubSquareMatrixSumLessThanK with the following parameters:
int[][] matrix: ann x nmatrixint k: the maximum allowed sum for every square of the selected size
Examples
Example 1
matrix = [[2, 2, 2], [3, 3, 3], [4, 4, 4]]k = 3return = 0The largest sum among the 1 x 1 sub-matrices is 4. Since threshold < 4, no square size satisfies the condition.
1 x 1 sub-matrices
| 2 | 2 | 2 |
| 3 | 3 | 3 |
| 4 | 4 | 4 |
Example 2
matrix = [[2, 2, 2], [3, 3, 3], [4, 4, 4]]k = 4return = 1Every 1 x 1 sub-matrix has sum at most 4, while the maximum 2 x 2 sum is 14.
2 x 2 sub-matrices
| 2 | 2 | 2 |
| 3 | 3 | 3 |
| 4 | 4 | 4 |
| 2 | 2 | 2 |
| 3 | 3 | 3 |
| 4 | 4 | 4 |
| 2 | 2 | 2 |
| 3 | 3 | 3 |
| 4 | 4 | 4 |
| 2 | 2 | 2 |
| 3 | 3 | 3 |
| 4 | 4 | 4 |
The largest 2 x 2 sum is 14.
Example 3
matrix = [[2, 2, 2], [3, 3, 3], [4, 4, 4]]k = 14return = 2Every 2 x 2 sub-matrix has sum at most 14, while the 3 x 3 matrix has sum 27.
3 x 3 sub-matrix
| 2 | 2 | 2 |
| 3 | 3 | 3 |
| 4 | 4 | 4 |
Example 4
matrix = [[2, 2, 2], [3, 3, 3], [4, 4, 4]]k = 27return = 3The complete 3 x 3 matrix has sum 27, so the entire matrix satisfies the condition.
Constraints
1 <= n <= 7501 <= k <= 10^91 <= matrix[i][j] <= 10^7- The sum of the entire matrix is at most
10^9.