프로그래머스 | H-Index (정렬)

Algorithm 2019. 8. 23. 15:00
반응형
  • H-Index
  • darklight

    sublimevimemacs

    C# 

문제 설명

H-Index는 과학자의 생산성과 영향력을 나타내는 지표입니다. 어느 과학자의 H-Index를 나타내는 값인 h를 구하려고 합니다. 위키백과1에 따르면, H-Index는 다음과 같이 구합니다.

어떤 과학자가 발표한 논문 n편 중, h번 이상 인용된 논문이 h편 이상이고 나머지 논문이 h번 이하 인용되었다면 h가 이 과학자의 H-Index입니다.

어떤 과학자가 발표한 논문의 인용 횟수를 담은 배열 citations가 매개변수로 주어질 때, 이 과학자의 H-Index를 return 하도록 solution 함수를 작성해주세요.

제한사항

  • 과학자가 발표한 논문의 수는 1편 이상 1,000편 이하입니다.
  • 논문별 인용 횟수는 0회 이상 10,000회 이하입니다.

입출력 예

citationsreturn

[3, 0, 6, 1, 5] 3

입출력 예 설명

이 과학자가 발표한 논문의 수는 5편이고, 그중 3편의 논문은 3회 이상 인용되었습니다. 그리고 나머지 2편의 논문은 3회 이하 인용되었기 때문에 이 과학자의 H-Index는 3입니다.

※ 공지 - 2019년 2월 28일 테스트케이스가 추가되었습니다.

 

for문 돌리면 9번에서 실패 뜸 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Linq;
 
namespace _09
{
    class Program
    {
        static void Main(string[] args)
        {
            var s = new Solution();
            //int[] citations = {3,0,6,1,5};
            int[] citations = {1,7,0,1,6,4};
            var result = s.solution(citations);
            Console.WriteLine("---------------");
            Console.WriteLine(result);
        }
    }
 
    public class Solution {
        public int solution(int[] citations) {
            int answer = 0;
 
            Array.Sort(citations, (a,b)=> b.CompareTo(a) );
 
            // for(int i = 0; i<citations.Length; i++){
            //     Console.WriteLine(i + " , " + citations[i]);
            //     if( citations[i] <= i )
            //         return answer = i;
            // }
 
            while(answer < citations.Length){
                if(citations[answer] <= answer) break;
                answer++;
            }
 
            return answer;
        }
    }
}
 
 
 

 

다른 사람 풀이 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
 
public class Solution
{
    public int solution(int[] citations)
    {
        int answer = 0;
 
        Array.Sort(citations);
        List<Tuple<intintint>> results = new List<Tuple<intintint>>();
 
        for(int i = 1; i <= citations.Max(); i++)
        {
            int HCnt = citations.Count(x => x >= i);
            int NHCnt = citations.Length - HCnt;
 
            results.Add(new Tuple<intintint>(i, HCnt, NHCnt));
        }
 
        answer = results.Where(x => x.Item1 <= x.Item2)
                    .Where(x => x.Item1 > x.Item3)
                    .OrderByDescending(x => x.Item1)
                    .First().Item1;
 
        return answer;
    }
}
 
 

 

 

풀이 

http://blog.naver.com/PostView.nhn?blogId=promarketyj&logNo=221434899288&categoryNo=0&parentCategoryNo=0&viewDate=¤tPage=1&postListTopCurrentPage=1&from=postView

 

프로그래머스 정렬문제 H-Index

프로그래머스 문제풀이코딩테스트 연습 > 정렬 > H-Index​문제설명H-Index는 과학자의 생산성과...

blog.naver.com

 

반응형

'Algorithm' 카테고리의 다른 글

프로그래머스 | 타겟 넘버  (0) 2019.08.23
c# 알고리즘  (0) 2019.08.23
프로그래머스 | 가장 큰 수 (정렬)  (0) 2019.08.23
프로그래머스 | K번째수 (정렬)  (0) 2019.08.23
프로그래머스 | 모의고사  (0) 2019.08.22
: