Skip to content

[LeetCode] 378. Kth Smallest Element in a Sorted Matrix #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
frdmu opened this issue Jul 12, 2021 · 0 comments
Open

[LeetCode] 378. Kth Smallest Element in a Sorted Matrix #11

frdmu opened this issue Jul 12, 2021 · 0 comments

Comments

@frdmu
Copy link
Owner

frdmu commented Jul 12, 2021

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 13

Example 2:

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

Constraints:

  • n == matrix.length
  • n == matrix[i].length
  • 1 <= n <= 300
  • -109 <= matrix[i][j] <= 109
  • All the rows and columns of matrix are guaranteed to be sorted in non-decreasing order.
  • 1 <= k <= n2

求第k小的值,用堆。代码如下:

class Solution {
public:
    int kthSmallest(vector<vector<int>>& matrix, int k) {
        priority_queue<int> q;
        int n = matrix.size(); 
        
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
               q.push(matrix[i][j]);
               if (q.size() > k) q.pop(); 
            }
        }

        return q.top();
    }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant