一些话
诈骗题,没啥好说
流程
题干讲什么分配论文,要输出所有教授h指数(最大论文点数,下文简称点数),一名教授h篇论文的引用量>=h时获得点数,因为一名教授只有一篇论文,所以直接让教授发表自己的论文,引用量不为0的计入点数就好了
套路
无
ac代码
#include <iostream> using namespace std; int main(){ int t; cin >> t; while(t--){ int n; long long cnt = 0; scanf("%d",&n); for(int i = 1;i <= n;i++){ int x; scanf("%d",&x); if(x >= 1) cnt++; } printf("%d\n",cnt); } return 0; }