728x90
문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/42747
접근 방법
문제 조건에 주어진대로 구현하면 된다.
citations중 최대값이 maxNum부터 검사를 해 나가는데, h번 이상 인용된 논문의 수인 cnt가 h편 이상이고, 나머지가(len-cnt)가 h번 이하로 인용되면 answer에 값을 저장하고 검사를 중단한다.
h의 max를 찾는 것이므로 더 작은 값은 검사할 필요가 없다.
import java.util.*;
class Solution {
public int solution(int[] citations) {
int answer = 0;
Arrays.sort(citations);
int len = citations.length;
int maxNum = citations[len-1];
for(int i = maxNum; i>=0; i--){ //h의 max를 찾는 것이므로
int cnt = 0;
for(int j = 0; j<len; j++){
if(citations[j]>=i) cnt+=1;
}
if(cnt>=i && (len-cnt)<=i) {
answer = i;
break;
}
}
return answer;
}
}
728x90
'Algorithm(Programmers)' 카테고리의 다른 글
[Java] 프로그래머스 입국심사 (이진탐색) (0) | 2021.06.25 |
---|---|
[C++] 프로그래머스 Lv.1 - 체육복(그리디 / DFS) (0) | 2021.03.30 |
[C++] 프로그래머스 Lv3. - 순위 (BFS / 그래프) (0) | 2021.03.28 |
[C++] 프로그래머스 Lv.3 - 가장 먼 노드 (0) | 2021.03.28 |
[C++] 프로그래머스 Lv.3 - 여행경로(DFS) (0) | 2021.03.28 |