LeetCode - Kth Smallest Element in a Sorted Matrix(378)

marafo·2021년 6월 7일

Heap - Medium

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
-10^9 <= matrix[i][j] <= 10^9
All the rows and columns of matrix are guaranteed to be sorted in non-decreasing order.
1 <= k <= n^2


class Solution:
    def kthSmallest(self, matrix: List[List[int]], k: int) -> int:
        
        # 8번째로 작다 -> (9 - 8) + 1 -> 2 번째로 크다 -> 인덱스 1이다. 
        idx = len(matrix) ** 2 - k
        all = []
        
        for i in range(len(matrix)):
            all += matrix[i]
        
        all.sort(reverse = True)
        
        return all[idx]
profile
프론트 개발자 준비

0개의 댓글