java.lang.Object
g1601_1700.s1632_rank_transform_of_a_matrix.Solution

public class Solution extends Object
1632 - Rank Transform of a Matrix.<p>Hard</p> <p>Given an <code>m x n</code> <code>matrix</code>, return <em>a new matrix</em> <code>answer</code> <em>where</em> <code>answer[row][col]</code> <em>is the</em> <em><strong>rank</strong> of</em> <code>matrix[row][col]</code>.</p> <p>The <strong>rank</strong> is an <strong>integer</strong> that represents how large an element is compared to other elements. It is calculated using the following rules:</p> <ul> <li>The rank is an integer starting from <code>1</code>.</li> <li>If two elements <code>p</code> and <code>q</code> are in the <strong>same row or column</strong> , then: <ul> <li>If <code>p < q</code> then <code>rank(p) < rank(q)</code></li> <li>If <code>p == q</code> then <code>rank(p) == rank(q)</code></li> <li>If <code>p > q</code> then <code>rank(p) > rank(q)</code></li> </ul> </li> <li>The <strong>rank</strong> should be as <strong>small</strong> as possible.</li> </ul> <p>The test cases are generated so that <code>answer</code> is unique under the given rules.</p> <p><strong>Example 1:</strong></p> <p><img src="https://assets.leetcode.com/uploads/2020/10/18/rank1.jpg" alt="" /></p> <p><strong>Input:</strong> matrix = [[1,2],[3,4]]</p> <p><strong>Output:</strong> [[1,2],[2,3]]</p> <p><strong>Explanation:</strong></p> <p>The rank of matrix[0][0] is 1 because it is the smallest integer in its row and column.</p> <p>The rank of matrix[0][1] is 2 because matrix[0][1] > matrix[0][0] and matrix[0][0] is rank 1.</p> <p>The rank of matrix[1][0] is 2 because matrix[1][0] > matrix[0][0] and matrix[0][0] is rank 1.</p> <p>The rank of matrix[1][1] is 3 because matrix[1][1] > matrix[0][1], matrix[1][1] > matrix[1][0], and both matrix[0][1] and matrix[1][0] are rank 2.</p> <p><strong>Example 2:</strong></p> <p><img src="https://assets.leetcode.com/uploads/2020/10/18/rank2.jpg" alt="" /></p> <p><strong>Input:</strong> matrix = [[7,7],[7,7]]</p> <p><strong>Output:</strong> [[1,1],[1,1]]</p> <p><strong>Example 3:</strong></p> <p><img src="https://assets.leetcode.com/uploads/2020/10/18/rank3.jpg" alt="" /></p> <p><strong>Input:</strong> matrix = [[20,-21,14],[-19,4,19],[22,-47,24],[-19,4,19]]</p> <p><strong>Output:</strong> [[4,2,3],[1,3,4],[5,1,6],[1,3,4]]</p> <p><strong>Constraints:</strong></p> <ul> <li><code>m == matrix.length</code></li> <li><code>n == matrix[i].length</code></li> <li><code>1 <= m, n <= 500</code></li> <li><code>-10<sup>9</sup> <= matrix[row][col] <= 10<sup>9</sup></code></li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details

    • matrixRankTransform

      public int[][] matrixRankTransform(int[][] matrix)