LeetCode每日一题——275. H-Index II

文章目录

一、题目

Given an array of integers citations where citations[i] is the number of citations a researcher received for their ith paper and citations is sorted in ascending order, return the researcher's h-index.

According to the definition of h-index on Wikipedia: The h-index is defined as the maximum value of h such that the given researcher has published at least h papers that have each been cited at least h times.

You must write an algorithm that runs in logarithmic time.

Example 1:

Input: citations = [0,1,3,5,6]

Output: 3

Explanation: [0,1,3,5,6] means the researcher has 5 papers in total and each of them had received 0, 1, 3, 5, 6 citations respectively.

Since the researcher has 3 papers with at least 3 citations each and the remaining two with no more than 3 citations each, their h-index is 3.

Example 2:

Input: citations = [1,2,100]

Output: 2

Constraints:

n == citations.length

1 <= n <= 105

0 <= citations[i] <= 1000

citations is sorted in ascending order.

二、题解

cpp 复制代码
class Solution {
public:
    int hIndex(vector<int>& citations) {
        int n = citations.size();
        int left = 0, right = n - 1;
        while(left <= right){
            int mid = (left + right) >> 1;
            int ret = n - mid;
            if(citations[mid] >= ret) right = mid - 1;
            else if(citations[mid] < ret) left = mid + 1;
        }
        return n - left;
    }
};
相关推荐
H_BB8 分钟前
第17届蓝桥杯备战历程
c++·算法·职场和发展·蓝桥杯
anew___25 分钟前
算法分析与设计课程全算法核心概述|期末复习+知识梳理
算法
daad77726 分钟前
记录一次上下文切换次数的统计
服务器·c++·算法
fliter26 分钟前
Cloudflare 推出 Flagship:为 AI 时代重新设计的功能开关服务
后端·算法
生成论实验室33 分钟前
《源·觉·知·行·事·物:生成论视域下的统一认知语法》第十七章 科学与人心的重聚
人工智能·算法·架构·知识图谱·创业创新
tankeven39 分钟前
C++ Lambda 表达式
c++
chao18984439 分钟前
局部保局投影(LPP)算法实现
算法
fangzt20101 小时前
插件系统:让其他人也能给编辑器写节点
c++
诙_1 小时前
深入理解C++文件操作
开发语言·c++
ShoreKiten1 小时前
cpp考前急救
数据结构·c++·算法