Problem Description
Given a 0-indexed m x n integer matrix matrix, create a new 0-indexed matrix called answer. Make answer equal to matrix, then replace each element with the value -1 with the maximum element in its respective column. Return the matrix answer.
Key Insights
- We need to traverse each column to find the maximum value.
- We will create a new matrix based on the original matrix.
- For each element in the original matrix, if it is -1, we will replace it with the maximum value found in its column.
- The constraints ensure that each column contains at least one non-negative integer.
Space and Time Complexity
Time Complexity: O(m * n) - We traverse the entire matrix twice: once to find max values and once to create the answer matrix. Space Complexity: O(m * n) - We create a new matrix to store the result.
Solution
The approach involves two main steps:
- Identify the maximum value in each column of the matrix.
- Construct the answer matrix by copying the values from the original matrix and replacing any occurrence of -1 with the corresponding maximum value from its column.
We will use arrays to store the maximum values for each column and then iterate through the matrix to build the answer.