티스토리 뷰
문제 : programmers.co.kr/learn/courses/30/lessons/42747?language=java
아이디어
Insertion sorting 방법을 이용하기
- n개의 논문 중 h회 이상 인용된 논문이 h개 이상일 때 그 h-index는 h이다. 따라서 h-index 값은 0 이상, n 이하가 된다.
- citations array를 역순으로 sorting 한 뒤, h값의 후보로 n부터 0까지(=candidate) 순회하면서 sorting된 array에 insertion sort를 수행했을 때, 이 candidate값이 들어가게 될 index를 찾는다.
- 만약 이 index값이 candidate 값보다 크다면, 예를들어 candidate값이 3인데 index값이 4라면, candidate값보다 높은 인용횟수를 가진 논문의 수가 4개라는 의미이므로, 이 경우 h-index는 3이 된다.
- candidate는 n에서 시작해서 0을 향해 1씩 감소하며 순회하므로, 이 조건문이 성립하는 경우가 가장 큰 h-index가 된다. 따라서 조건문이 성립함과 동시에 반복문을 종료하고 찾은 h-index를 반환하면 된다.
소스코드
import java.util.Arrays;
public class Solution {
public int solution(int[] citations) {
// 역순정렬
for (int i = 0; i < citations.length; i++) {
citations[i] = -citations[i];
}
Arrays.sort(citations);
for (int i = 0; i < citations.length; i++) {
citations[i] = -citations[i];
}
int h;
for (int i = 0; i < citations.length; i++) {
int candidate = citations.length - i;
h = this.findInsertionSortIndex(citations, citations.length - i);
if (h >= candidate) {
return candidate;
}
}
return 0;
}
public int findInsertionSortIndex(int[] arr, int num) {
// assume that the arr is already sorted in descending order
for (int i = 0; i < arr.length; i++) {
if (num > arr[i]) {
return i;
}
}
return arr.length;
}
}
'알고리즘 문제 > Programmers' 카테고리의 다른 글
[프로그래머스] 타겟 넘버 - Java (0) | 2021.04.12 |
---|---|
[프로그래머스] 모의고사 - Java (0) | 2021.04.09 |
[프로그래머스] 가장 큰 수 - Java (0) | 2021.04.07 |
[프로그래머스] 주식 가격 - Java (0) | 2021.03.29 |
[프로그래머스] 프린터 - Java (0) | 2021.03.23 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 동적계획법
- 그래프
- java
- 연습문제
- 해시
- 자료구조
- Sorting
- dynamic programming
- Hash
- 프로그래머스
- greedy
- stack
- programmers
- Algorithm
- Queue
- 백준
- 큐
- Heap
- 힙
- 정렬
- 데브코스
- 멀리 뛰기
- 탐욕법
- BFS
- 자바
- DP
- 완전탐색
- dfs
- 코딩테스트
- 알고리즘
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함