일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 재사용
- Fragment에서 Activity의 함수 사용하기
- 고차함수
- ui test
- 뷰변경 감지
- fragment
- 코딜리티
- searchview
- adapter
- 스와이프
- espresso
- Error:Execution failed for task ':app:mergeDebugResources'
- 코틀린
- 안드로이드13
- 구분선
- 안드로이드개발레벨업교과서
- LayoutManger
- binding adapter
- 안드로이드
- 리사이클러뷰
- 생명주기
- viewholder
- high order function
- 안드로이드스튜디오
- ActivityTestRule
- Android
- Fragment 수동 추가
- 테마 아이콘
- IntentTestRule
- recyclerview
- Today
- Total
룬아님의 취중코딩
Codility 13번 MinAvgTwoSlice 본문
MinAvgTwoSlice
A non-empty array A consisting of N integers is given. A pair of integers (P, Q), such that 0 ≤ P < Q < N, is called a slice of array A (notice that the slice contains at least two elements). The average of a slice (P, Q) is the sum of A[P] + A[P + 1] + ... + A[Q] divided by the length of the slice. To be precise, the average equals (A[P] + A[P + 1] + ... + A[Q]) / (Q − P + 1).
For example, array A such that:
A[0] = 4 A[1] = 2 A[2] = 2 A[3] = 5 A[4] = 1 A[5] = 5 A[6] = 8
contains the following example slices:
- slice (1, 2), whose average is (2 + 2) / 2 = 2;
- slice (3, 4), whose average is (5 + 1) / 2 = 3;
- slice (1, 4), whose average is (2 + 2 + 5 + 1) / 4 = 2.5.
The goal is to find the starting position of a slice whose average is minimal.
Write a function:
class Solution { public int solution(int[] A); }
that, given a non-empty array A consisting of N integers, returns the starting position of the slice with the minimal average. If there is more than one slice with a minimal average, you should return the smallest starting position of such a slice.
For example, given array A such that:
A[0] = 4 A[1] = 2 A[2] = 2 A[3] = 5 A[4] = 1 A[5] = 5 A[6] = 8
the function should return 1, as explained above.
Write an efficient algorithm for the following assumptions:
- N is an integer within the range [2..100,000];
- each element of array A is an integer within the range [−10,000..10,000].
Copyright 2009–2019 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.
import java.util.*;
class Solution {
public int solution(int[] A) {
float min = 10001;
int minPos = 0;
for (int i = 0; i <= A.length - 2; i++) {
float _min;
if (i <= A.length - 3) {
_min = Math.min((A[i] + A[i + 1] + A[i + 2]) / 3f, (A[i] + A[i + 1]) / 2f);
} else {
_min = Math.min(min, (A[i] + A[i + 1]) / 2f);
}
if (min > _min) {
min = _min;
minPos = i;
}
}
return minPos;
}
}
'개발 > 알고리즘' 카테고리의 다른 글
Codility 17번 NumberOfDiscIntersections (0) | 2019.09.01 |
---|---|
Codility 16번 Triangle (0) | 2019.09.01 |
codility 14번 CountDiv (0) | 2019.08.26 |
Codlility 15번 Distinct (0) | 2019.08.26 |
Codility 10번 PassingCars (0) | 2019.08.17 |