Kth Smallest Element in a Sorted Matrix (Leetcode)二分法

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:

我们并不用对每一行都做二分搜索法,我们注意到每列也是有序的,我们可以利用这个性质,从数组的左下角开始查找,如果比目标值小,我们就向右移一位,而且我们知道当前列的当前位置的上面所有的数字都小于目标值,那么cnt += i+1,反之则向上移一位,这样我们也能算出cnt的值。其余部分跟上面的方法相同,参见代码如下:

JAVA代码:

public static int count(int[][] matrix,int target){
int i=matrix.length-1,j=0;
int res=0;
while(i>=0&&j<matrix[0].length){
if(matrix[i][j]>target)i--;
else{
res+=i+1;
j++;
}
}
return res;
}

public static int kthSmallest(int[][] matrix, int k) {
        int left=matrix[0][0],right=matrix[matrix.length-1][matrix[0].length-1];
        while(left<right){
        int mid=(left+right)/2;
        int cnt=count(matrix,mid);
        if(cnt<k)left=mid+1;
        else right=mid;
        //System.out.println(left+" "+right+" "+mid+" "+cnt);
        }
        return left;
   }

matrix = [
   [ 1,  5,  9],
   [10, 11, 13],
   [12, 13, 15]
],
k = 8,

return 13.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值