Saturday, October 21, 2017

Codility - Lesson 11 Sieve of Eratosthenes - 1. CountSemiprimes

Source Link:
https://codility.com/programmers/lessons/11-sieve_of_eratosthenes/count_semiprimes/

Question:
A prime is a positive integer X that has exactly two distinct divisors: 1 and X. The first few prime integers are 2, 3, 5, 7, 11 and 13.
A semiprime is a natural number that is the product of two (not necessarily distinct) prime numbers. The first few semiprimes are 4, 6, 9, 10, 14, 15, 21, 22, 25, 26.
You are given two non-empty zero-indexed arrays P and Q, each consisting of M integers. These arrays represent queries about the number of semiprimes within specified ranges.
Query K requires you to find the number of semiprimes within the range (P[K], Q[K]), where 1 ≤ P[K] ≤ Q[K] ≤ N.

For example, consider an integer N = 26 and arrays P, Q such that:
P[0] = 1 Q[0] = 26 P[1] = 4 Q[1] = 10 P[2] = 16 Q[2] = 20  

The number of semiprimes within each of these ranges is as follows:
  • (1, 26) is 10,
  • (4, 10) is 4,
  • (16, 20) is 0.
Write a function:
class Solution { public int[] solution(int N, int[] P, int[] Q); }
that, given an integer N and two non-empty zero-indexed arrays P and Q consisting of M integers, returns an array consisting of M elements specifying the consecutive answers to all the queries.

For example, given an integer N = 26 and arrays P, Q such that:
P[0] = 1 Q[0] = 26 P[1] = 4 Q[1] = 10 P[2] = 16 Q[2] = 20
the function should return the values [10, 4, 0], as explained above.

Assume that:
  • N is an integer within the range [1..50,000];
  • M is an integer within the range [1..30,000];
  • each element of arrays P, Q is an integer within the range [1..N];
  • P[i] ≤ Q[i].
Complexity:
  • expected worst-case time complexity is O(N*log(log(N))+M);
  • expected worst-case space complexity is O(N+M), beyond input storage (not counting the storage required for input arguments).
Elements of input arrays can be modified.

My Solution:
Notes:
1. main idea: using "sieve of Eratosthenes"
https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes
2. initial settting (sieve of Eratosthenes)
Arrays.fill(primeArray, true); // initial setting: all primes
primeArray[0] = false; // not prime 
primeArray[1] = false; // not prime
int sqrtN = (int)Math.sqrt(N);
for(int i =1; i < sqrtN; i++){ 
if(primeArray[i] == true) // prime 
{
int j = i + i;
for(j=j; j<=N; j=j+i){
primeArray[j] = false; // not prime
}
}
    
3.  store all primes in "List"
List<Integer> primeList = new ArrayList<>();
4. find "semiprimes"
// for "primeList.size()"
for(int i=0; i< primeList.size(); i++){
for(int j=i; j< primeList.size(); j++){
semiprimeTemp = (long) primeList.get(i) * (long) primeList.get(j); // semiprimes
if(semiprimeTemp > N){
break;
}
else{
semiprimeArray[(int)semiprimeTemp] = true; // semiprimes
}
}
  
5. compute "cumulative Count of semiprimes"
int[] semiprimeCumulateCount = new int [N+1]; // note: plus one for "0"
for(int i=1; i<=N; i++){
semiprimeCumulateCount[i] = semiprimeCumulateCount[i-1]; // cumulative  
if(semiprimeArray[i] == true){
semiprimeCumulateCount[i]++; // semiprimes
}
 
6. compute "results" (for each query)
for(int i=0; i< numQuery; i++){
result[i] = semiprimeCumulateCount[Q[i]] - semiprimeCumulateCount[P[i]-1]; // note: "P[i]-1" (not included)
}
return result; 

No comments:

Post a Comment

Codility - Lesson 16 Greedy algorithms - 2. MaxNonoverlappingSegments

Source Link: https://app.codility.com/programmers/lessons/16-greedy_algorithms/max_nonoverlapping_segments/ Question: Located on a line ...