Time complexity of the Maximum Sum SQUARE Problem?
81

I think many people here might have come across the maximum sum rectangle problem. Link

The best this can be solved is at a time complexity of O(n^3). If we consider only a square submatrix, is it possible to improve the time complexity?

Thanks

Comments (0)