반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

[codility] Triangle 본문

이직

[codility] Triangle

닉의네임 2022. 7. 25. 11:11
반응형
An array A consisting of N integers is given. A triplet (P, Q, R) is triangular if 0 ≤ P < Q < R < N and:

A[P] + A[Q] > A[R],
A[Q] + A[R] > A[P],
A[R] + A[P] > A[Q].
For example, consider array A such that:

  A[0] = 10    A[1] = 2    A[2] = 5
  A[3] = 1     A[4] = 8    A[5] = 20
Triplet (0, 2, 4) is triangular.

Write a function:

class Solution { public int solution(int[] A); }

that, given an array A consisting of N integers, returns 1 if there exists a triangular triplet for this array and returns 0 otherwise.

For example, given array A such that:

  A[0] = 10    A[1] = 2    A[2] = 5
  A[3] = 1     A[4] = 8    A[5] = 20
the function should return 1, as explained above. Given array A such that:

  A[0] = 10    A[1] = 50    A[2] = 5
  A[3] = 1
the function should return 0.

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].

 

    public static int solution(int[] A) {
        int ret = 0;
        if(A.length < 3){
            return ret;
        }
        Arrays.sort(A);
        for (int i = 0; i < A.length - 2; i++) {
            long P = A[i];
            long Q = A[i + 1];
            long R = A[i + 2];

            if (P + Q > R) {
                return 1;
            }
        }
        return ret;
    }
반응형

'이직' 카테고리의 다른 글

[codility] Brackets  (0) 2022.07.25
[codility] NumberOfDiscIntersections  (0) 2022.07.25
[codility] MaxProductOfThree  (0) 2022.07.25
[codility] Distinct  (0) 2022.07.24
코딜리티 12  (0) 2022.07.24
Comments