Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    378 - Kth Smallest Element in a Sorted Matrix\.

    Medium

    Given an n x n matrix where each of the rows and columns is sorted in ascending order, return the <code>k<sup>th</sup></code> smallest element in the matrix.

    Note that it is the <code>k<sup>th</sup></code> smallest element in the sorted order , not the <code>k<sup>th</sup></code> distinct element.

    You must find a solution with a memory complexity better than <code>O(n<sup>2</sup>)</code>.

    Example 1:

    Input: matrix = \[\[1,5,9],10,11,13,12,13,15], k = 8

    Output: 13

    Explanation: The elements in the matrix are 1,5,9,10,11,12,13,<ins> **13** </ins>,15, and the 8<sup>th</sup> smallest number is 13

    Example 2:

    Input: matrix = \[\[-5]], k = 1

    Output: -5

    Constraints:

    • n == matrix.length == matrix[i].length

    • 1 &lt;= n &lt;= 300

    • <code>-10<sup>9</sup><= matrixj<= 10<sup>9</sup></code>

    • All the rows and columns of matrix are guaranteed to be sorted in non-decreasing order.

    • <code>1 <= k <= n<sup>2</sup></code>

    Follow up:

    • Could you solve the problem with a constant memory (i.e., O(1) memory complexity)?

    • Could you solve the problem in O(n) time complexity? The solution may be too advanced for an interview but you may find reading this paper fun.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Integer kthSmallest(Array<IntArray> matrix, Integer k)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait