返回介绍

solution / 0300-0399 / 0378.Kth Smallest Element in a Sorted Matrix / README_EN

发布于 2024-06-17 01:04:01 字数 5034 浏览 0 评论 0 收藏 0

378. Kth Smallest Element in a Sorted Matrix

中文文档

Description

Given an n x n matrix where each of the rows and columns is 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.

You must find a solution with a memory complexity better than O(n2).

 

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 == 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

 

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.

Solutions

Solution 1

class Solution:
  def kthSmallest(self, matrix: List[List[int]], k: int) -> int:
    def check(matrix, mid, k, n):
      count = 0
      i, j = n - 1, 0
      while i >= 0 and j < n:
        if matrix[i][j] <= mid:
          count += i + 1
          j += 1
        else:
          i -= 1
      return count >= k

    n = len(matrix)
    left, right = matrix[0][0], matrix[n - 1][n - 1]
    while left < right:
      mid = (left + right) >> 1
      if check(matrix, mid, k, n):
        right = mid
      else:
        left = mid + 1
    return left
class Solution {
  public int kthSmallest(int[][] matrix, int k) {
    int n = matrix.length;
    int left = matrix[0][0], right = matrix[n - 1][n - 1];
    while (left < right) {
      int mid = (left + right) >>> 1;
      if (check(matrix, mid, k, n)) {
        right = mid;
      } else {
        left = mid + 1;
      }
    }
    return left;
  }

  private boolean check(int[][] matrix, int mid, int k, int n) {
    int count = 0;
    int i = n - 1, j = 0;
    while (i >= 0 && j < n) {
      if (matrix[i][j] <= mid) {
        count += (i + 1);
        ++j;
      } else {
        --i;
      }
    }
    return count >= k;
  }
}
class Solution {
public:
  int kthSmallest(vector<vector<int>>& matrix, int k) {
    int n = matrix.size();
    int left = matrix[0][0], right = matrix[n - 1][n - 1];
    while (left < right) {
      int mid = left + right >> 1;
      if (check(matrix, mid, k, n)) {
        right = mid;
      } else {
        left = mid + 1;
      }
    }
    return left;
  }

private:
  bool check(vector<vector<int>>& matrix, int mid, int k, int n) {
    int count = 0;
    int i = n - 1, j = 0;
    while (i >= 0 && j < n) {
      if (matrix[i][j] <= mid) {
        count += (i + 1);
        ++j;
      } else {
        --i;
      }
    }
    return count >= k;
  }
};
func kthSmallest(matrix [][]int, k int) int {
  n := len(matrix)
  left, right := matrix[0][0], matrix[n-1][n-1]
  for left < right {
    mid := (left + right) >> 1
    if check(matrix, mid, k, n) {
      right = mid
    } else {
      left = mid + 1
    }
  }
  return left
}

func check(matrix [][]int, mid, k, n int) bool {
  count := 0
  i, j := n-1, 0
  for i >= 0 && j < n {
    if matrix[i][j] <= mid {
      count += (i + 1)
      j++
    } else {
      i--
    }
  }
  return count >= k
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文