LeetCode 378 Kth Smallest Element in a Sorted Matrix 题解
1.题目:
Given a n x n matrix where each of the rows and columns are sorted in ascending order, find 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:
matrix = [
[ 1, 5, 9],
[10, 11, 13],
[12, 13, 15]
],
k = 8,
return 13.
题意:
给一个二维数组,每一行都是有序的(仅限于此行)所以整个数组不是蛇形的。
求第K小的数。
2.解题思路:
如下的解题方法,时间复杂度还是有点高捂脸。我使用优先队列,构造了一个堆。
一直维护这个堆的大小为k,最后弹出最大的那个数,就是第k小的数。
最后TUT虽然ac了,时间复杂度还是高了捂脸。
3.代码
1 |
|