포럼
문제 COCI00434

Hindeks

설명

1 \(s / 64\) \(MB / 50\) points

How do we evaluate the success of a scientist? By the number of published papers or by

their impact - more precisely, the number of citations? Both elements matter. We say that a

scientific paper has a citation score \(C\) if other scientists cited the paper in question in their

paper (referred to it) a total of \(C\) times. One of the possible metrics of the success of

scientists is their h-index that takes into account both the amount of papers and their citation

scores.

A scientist’s h-index is defined as the largest number \(H\) with the following properties: the

scientist can choose \(H\) papers such that their citation score is at least \(H\)

. For example, if a

scientist wrote 10 papers such that each of them has been cited 10 or more times, their

h-index is (at least) 10.

Write a programme that inputs the citation scores of all papers of a given scientist and

outputs their h-index.

제약
입력 형식

The first line of input contains the positive integer \(N\)

(1 ≤ \(N\)

≤ 500 000), the number of papers
of a given scientist.
The following line contains \(N\)

non-negative integers from the interval [0, 1 000 000], the
citation scores of the respective papers.

출력 형식

The first and only line of output must contain the required h-index.

예제 1
입력
5
1 1 4 8 1

5
8 5 3 4 10
출력
output
2

4
설명

Clarification of the first test case: The scientist has two papers with citation scores larger than or
equal to 2 (the papers with citation scores 4 and 8).
Clarification of the second test case: The scientist has four papers with citation scores larger than or
equal to 4 (the papers with citation scores 8, 5, 4 and 10).

문제 정보

생성자가 기록되지 않았습니다.

출처 COCI 2016/2017 Contest 6

평가 및 의견

Hindeks

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 1 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Hindeks

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8