Problem Description
Given an n x n binary grid, in one step you can choose two adjacent rows of the grid and swap them. A grid is said to be valid if all the cells above the main diagonal are zeros. Return the minimum number of steps needed to make the grid valid, or -1 if the grid cannot be valid.
Key Insights
- A valid grid requires all cells (i, j) where i < j to be zeros.
- The number of zeros needed in each row increases as you move down the grid.
- Each row can only be swapped with its adjacent rows, which means the rows must be arranged in a specific order for validity.
- If a row has insufficient trailing zeros compared to its required position, the grid cannot be made valid.
Space and Time Complexity
Time Complexity: O(n^2)
Space Complexity: O(n)
Solution
To solve the problem, we can use a greedy approach with the following steps:
- Count Trailing Zeros: For each row, count the number of trailing zeros. This count determines how far down the row can be moved in order to make the grid valid.
- Determine Required Zeros: As we iterate through the rows, we keep track of how many zeros are required for each row based on its position in the grid.
- Swapping Logic: For each row, if it does not have enough zeros, we need to find a row below it that can be swapped into its place. We count how many swaps are needed to achieve this.
- Return the Result: If at any point we cannot find a suitable row to swap into position, we return -1. Otherwise, we return the total number of swaps made.