본문 바로가기
::public/코딩테스트 풀이

H-index

by 해맑은욱 2019. 9. 5.
*H-Index(정렬) 
논문 n편 중, h번 이상 인용된 논문이 h편 이상 나머지 논문이 h번 이하 인용되었다면 h = H-Index. 
 
 
#include <iostream>
#include <algorithm>
#include <vector>
 
using namespace std
 
int solution(vector citations) { 
    int answer = 0
 
    sort(citations.begin(), citations.end(), greater<int>()); 
 
    int p = 0;     
    while(true
    { 
        if(p >= citations[p]) 
            break
        p++
    } 
 
    return answer = p; 
cs

'::public > 코딩테스트 풀이' 카테고리의 다른 글

정수 제곱근 판별  (0) 2019.09.05
체육복  (0) 2019.09.05
가장 큰 수  (0) 2019.09.05
프린터  (0) 2019.09.05
이상한 문자 만들기  (0) 2019.09.05