Codility [ Lesson 8 | Leader ] Dominator - JavaScript

Sohyeon Bak·2022년 3월 1일
0

Codility

목록 보기
17/19
post-thumbnail

문제

An array A consisting of N integers is given. The dominator of array A is the value that occurs in more than half of the elements of A.

For example, consider array A such that

A[0] = 3 A[1] = 4 A[2] = 3
A[3] = 2 A[4] = 3 A[5] = -1
A[6] = 3 A[7] = 3
The dominator of A is 3 because it occurs in 5 out of 8 elements of A (namely in those with indices 0, 2, 4, 6 and 7) and 5 is more than a half of 8.

Write a function

function solution(A);

that, given an array A consisting of N integers, returns index of any element of array A in which the dominator of A occurs. The function should return −1 if array A does not have a dominator.

For example, given array A such that

A[0] = 3 A[1] = 4 A[2] = 3
A[3] = 2 A[4] = 3 A[5] = -1
A[6] = 3 A[7] = 3
the function may return 0, 2, 4, 6 or 7, as explained above.

Write an efficient algorithm for the following assumptions:

N is an integer within the range [0..100,000];
each element of array A is an integer within the range [−2,147,483,648..2,147,483,647].

문제해석

주어지는 배열 요소 중 중복되는 값 중에 가장 많고 배열의 길이의 반(half)보다 큰 값이 leader값이 된다. 그러한 값이 있다면 그 값을 리턴하고 가장 큰 값이 없거나 가장 큰 값이 배열 길이의 반보다 작다면 -1을 리턴해줘야한다.

문제풀이

먼저 배열의 요소를 하나씩 카운팅하기 위해 객체를 만들어 key는 배열의 요소로 지정하고 value는 요소의 개수로 카운팅 시켜준다.
그리고 객체를 돌면서 배열 자체 길이의 반보다 큰 값이 있다면 그 key값을 리턴하고, 없다면 -1을 리턴해주면 된다.

코드

function solution(A) {
    // write your code in JavaScript (Node.js 8.9.4)
    let answer = -1;

    let tmp = {};
    for(let i = 0; i<A.length; i++){
        tmp[A[i]] = (tmp[A[i]] || 0) + 1
    }
    
    for(const [key, value] of Object.entries(tmp)){
        if(tmp[key] > A.length/2){
            answer = A.indexOf(Number(key))
        }
    }

    
    return answer
}

최종결과

출처

https://app.codility.com/programmers/lessons/8-leader/

profile
정리하고 기억하는 곳

0개의 댓글