1337. 矩阵中战斗力最弱的 K 行

原题链接:1337. 矩阵中战斗力最弱的 K 行

 

solution:        暴力

class Solution {
public:
    typedef pair<int,int> PII;
    int calculate(vector<int>& line)   //统计军人个数
    {   
        int cnt = 0;
        for(int i = 0;i < line.size();i++){
            if(line[i] == 1) cnt++;
            else break;
        }
        return cnt;
    }
    vector<int> kWeakestRows(vector<vector<int>>& mat, int k) {
        vector<int> res;    //定义返回值
        vector<PII> segs;   
        for(int i = 0;i < mat.size();i++){
            segs.push_back({i,calculate(mat[i])});
        }
        //排序
        sort(segs.begin(),segs.end(),[](const PII &a,const PII &b){
            if(a.second < b.second) return true;
            else if(a.second == b.second) return a.first < b.first;
            return false;
        });

        for(int i = 0;i < k;i++){
            res.push_back(segs[i].first);
        }
        return res;
    }
};

 优化一下:把寻找军人的个数的过程优化成二分

class Solution {
public:
    typedef pair<int,int> PII;
    int binarySearch(vector<int>& line)   //统计军人个数
    {   
        int n = line.size();
        int l = 0,r = n - 1;
        while(l < r){
            int mid = l + r >> 1;
            if(line[mid] == 0) r = mid;
            else l = mid + 1;
        }
        if(line[l] != 0) return n;
        return l;
    }
    vector<int> kWeakestRows(vector<vector<int>>& mat, int k) {
        vector<int> res;    //定义返回值
        vector<PII> segs;   
        for(int i = 0;i < mat.size();i++){
            segs.push_back({i,binarySearch(mat[i])});
        }
        sort(segs.begin(),segs.end(),[](const PII &a,const PII &b){
            if(a.second < b.second) return true;
            else if(a.second == b.second) return a.first < b.first;
            return false;
        });

        for(int i = 0;i < k;i++){
            res.push_back(segs[i].first);
        }


        return res;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值