码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • HDU 6277 Higher h-index


    Problem Description

    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 no papers and he is going to publish some subsequently.
    If he works on a paper for x hours, the paper will get (a⋅x) citations, where a is a known constant.
    It's clear that x should be a positive integer.
    There is also a trick -- one can cite his own papers published earlier.

    Given Bobo has n working hours, find the maximum h-index of him.
     

     

    Input

    The input consists of several test cases and is terminated by end-of-file.

    Each test case contains two integers n and a.

     

    Output

    For each test case, print an integer which denotes the maximum h-index.

    ## Constraint

    * 1≤n≤109
    * 0≤a≤n
    * The number of test cases does not exceed 104.

     

    Sample Input

     
     

    3 0 3 1 1000000000 1000000000

     

    Sample Output

     
     

    1 2 1000000000

     

    Hint



    For the first sample, Bobo can work 3 papers for 1 hour each.
    With the trick mentioned, he will get papers with citations 2,1,0. Thus, his h-index is 1.

    For the second sample, Bobo can work 2 papers for 1 and 2 hours respectively. He will get papers with citations 1+1,2+0. Thus, his h-index is 2.

    1. #include
    2. #include
    3. using namespace std;
    4. int main()
    5. {
    6. int n,m;
    7. while(cin>>n>>m)
    8. {
    9. cout<<(n+m>>1)<
    10. }
    11. }

  • 相关阅读:
    排序算法-堆排序和TopK算法
    Vue3 Pinia 全局状态管理工具的使用
    [附源码]java毕业设计基于SSM的酒店管理系统
    HTTPS的链接建立、通信过程
    python安装
    第五天:前端页面展示不出来
    NanoPC-T4 RK3399:uboot cmd与boot加载
    三、W5100S/W5500+RP2040树莓派Pico<TCP Client数据回环测试>
    C语言:字符串函数(2)
    卡尔丹旋转规则
  • 原文地址:https://blog.csdn.net/qq_62242287/article/details/126651690
  • 最新文章
  • 沪漂五周年了:我越来越迷茫了
    Agentic Skill Routing 实战:别再把所有 Skill 塞进 AI Agent 上下文
    MySQL-Seconds_behind_master的精度误差
    [MAF预定义ChatClient中间件-03]CachingChatClient——利用缓存省钱省时间
    AI的至暗历史:从万众期待到被政府撤资,AI的两次死亡徘徊
    Agent OS :五种驯服不确定性的范式
    PortSwigger SQL注入LAB11
    数据库即时编译JIT
    [Begin]AI Learn Data Day 0
    深度学习进阶(二十七)现代 LLM 的核心架构设计其二:SwiGLU
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号