일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- aggs
- analyzer test
- Kafka
- API
- aggregation
- query
- zip 암호화
- Mac
- matplotlib
- 차트
- 파이썬
- Elasticsearch
- Java
- Python
- docker
- 900gle
- TensorFlow
- sort
- flask
- MySQL
- ELASTIC
- high level client
- License
- token filter test
- license delete
- springboot
- licence delete curl
- Test
- zip 파일 암호화
- plugin
Archives
- Today
- Total
개발잡부
[codility] Triangle 본문
반응형
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