前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >A.Easy h-index

A.Easy h-index

作者头像
Cell
发布2022-02-25 14:14:03
1450
发布2022-02-25 14:14:03
举报
文章被收录于专栏:Cell的前端专栏

A. Easy h-index

The h-index of an author is the largest h where he has at least h papers with citations not less than h. Bobo has published many papers. Given a0,a1,a2,…,an which means Bobo has published ai papers with itations exactly i, find the h-index of Bobo.

Input

The input consists of several test cases and is terminated by end-of-file. The first line of each test case contains an integer n. The second line contains (n+1) integers a0,a1,…,an.

Output

For each test case, print an integer which denotes the result.

Constraint

• 1≤ n ≤2·105 • 0≤ ai ≤109 • The sum of n does not exceed 250,000.

Sample Input

代码语言:javascript
复制
1
1 2
2
1 2 3
3
0 0 0 0

Sample Output

代码语言:javascript
复制
1
2
0

题意:给定被引用次数为 0~n 的论文分别有几张,找到最大的 h,满足被引用次数大于等于 h 的论文至少有 h 张 思路:在区间 [0,n] 内二分答案;或直接从 n~0 遍历找到第一个满足条件的 h

后 AC 代码

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

#include "bits/stdc++.h" using namespace std; int main(){ int a[200005]; int n; int i; while(cin>>n){ for(i=0;i<=n;i++) cin>>a[i]; int sum=a[n]; for(i=n;i>=0;){ if(sum>=i){ cout<<i<<endl; break; } else sum+=a[--i]; } if(i<0) cout<<"0"<<endl; } return 0; }

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-06-14,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • A. Easy h-index
    • Input
      • Output
        • Constraint
          • Sample Input
            • Sample Output
            领券
            问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档