0378. Kth Smallest Element in a Sorted Matrix
https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix
Description
Given an n x n matrix where each of the rows and columns are sorted in ascending order, return the kth smallest element in the matrix.
Note that it is the kth smallest element in the sorted order, not the kth distinct element.
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,**13**,15], and the 8th smallest number is 13Example 2:
**Input:** matrix = [[-5]], k = 1
**Output:** -5Constraints:
n == matrix.lengthn == matrix[i].length1 <= n <= 300-109 <= matrix[i][j] <= 109All the rows and columns of
matrixare guaranteed to be sorted in non-decreasing order.1 <= k <= n2
ac1: minHeap
similar to: https://leetcode.com/problems/merge-k-sorted-lists/description/
ac2: binary search
even so hard to understand.
another version, template
Last updated
Was this helpful?