일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ActivityTestRule
- 고차함수
- viewholder
- adapter
- 안드로이드
- Fragment 수동 추가
- 재사용
- Android
- 코틀린
- high order function
- recyclerview
- 리사이클러뷰
- 안드로이드개발레벨업교과서
- 스와이프
- binding adapter
- 코딜리티
- Fragment에서 Activity의 함수 사용하기
- espresso
- LayoutManger
- 테마 아이콘
- 생명주기
- 안드로이드스튜디오
- 구분선
- 뷰변경 감지
- searchview
- 안드로이드13
- fragment
- IntentTestRule
- ui test
- Error:Execution failed for task ':app:mergeDebugResources'
- Today
- Total
룬아님의 취중코딩
Codility 32번 CountNonDivisible 본문
CountNonDivisible
You are given an array A consisting of N integers.
For each number A[i] such that 0 ≤ i < N, we want to count the number of elements of the array that are not the divisors of A[i]. We say that these elements are non-divisors.
For example, consider integer N = 5 and array A such that:
A[0] = 3 A[1] = 1 A[2] = 2 A[3] = 3 A[4] = 6
For the following elements:
- A[0] = 3, the non-divisors are: 2, 6,
- A[1] = 1, the non-divisors are: 3, 2, 3, 6,
- A[2] = 2, the non-divisors are: 3, 3, 6,
- A[3] = 3, the non-divisors are: 2, 6,
- A[4] = 6, there aren't any non-divisors.
Write a function:
class Solution { public int[] solution(int[] A); }
that, given an array A consisting of N integers, returns a sequence of integers representing the amount of non-divisors.
Result array should be returned as an array of integers.
For example, given:
A[0] = 3 A[1] = 1 A[2] = 2 A[3] = 3 A[4] = 6
the function should return [2, 4, 3, 2, 0], as explained above.
Write an efficient algorithm for the following assumptions:
- N is an integer within the range [1..50,000];
- each element of array A is an integer within the range [1..2 * N].
class Solution {
public int[] solution(int[] A) {
int[] cnt = new int[A.length*2 + 1];
int[] p = new int[A.length];
for(int i=0; i<A.length; i++){
cnt[A[i]]++;
}
for(int i=0; i<A.length; i++){
for(int j=1; j<=Math.sqrt(A[i]); j++){
if(A[i]/j == j){
p[i] += cnt[j];
}else{
p[i] += (cnt[j] + cnt[A[i]/j]);
}
}
}
int[] ans = new int[A.length];
for(int i=0; i<ans.length; i++){
ans[i] = A.length - p[i];
}
return ans;
// write your code in Java SE 8
}
}
'개발 > 알고리즘' 카테고리의 다른 글
Codility 34번 CommonPrimeDivisors (0) | 2019.11.05 |
---|---|
Codility 33번 ChocolatesByNumbers (0) | 2019.10.29 |
Codility 31번 CountSemiprimes (0) | 2019.10.19 |
Codility 29번 Peaks (0) | 2019.09.30 |
Codility 28번 MinPerimeterRectangle (0) | 2019.09.30 |