Problem Description
You are given an n x n square matrix of integers grid. Return the matrix such that:
- The diagonals in the bottom-left triangle (including the middle diagonal) are sorted in non-increasing order.
- The diagonals in the top-right triangle are sorted in non-decreasing order.
Key Insights
- The matrix can be divided into two triangles: bottom-left and top-right.
- Each diagonal can be identified by its starting point in the matrix.
- We can collect values from each diagonal, sort them accordingly, and then place them back into their respective positions in the matrix.
Space and Time Complexity
Time Complexity: O(n^2 log n) - Sorting the diagonals takes logarithmic time relative to the number of elements in each diagonal. Space Complexity: O(n) - We need space to store diagonal values temporarily.
Solution
- Identify and store the elements of each diagonal in both the bottom-left and top-right triangles.
- Sort the bottom-left diagonals in non-increasing order and the top-right diagonals in non-decreasing order.
- Reinsert the sorted values back into their original positions in the matrix.