====== Prime Number Generator: Sieve of Eratosthenes ======
Prime sieves((A sieve (Pronounced like "give" not "sleeve".) is a physical metaphor (i.e., a mesh bowl in a kitchen) for an algorithmic technique used in number theory to "sift out" a class of numbers in a given set or range.)) are common devices for generating prime numbers in a given range. These lists can be used for quick verification of relatively small prime numbers (typically no larger than 108) when many such verifications may be necessary.
===== Source =====
from math import *
def sieve(n):
primes = [True] * (n+1) # true for each primes
primes[0] = primes[1] = False
for i in range(2, int(sqrt(n))+1): # filter out non-primes
if primes[i]:
for j in range(i**2, n+1, i):
primes[j] = False
return [i for i in range(len(primes)) if primes[i]] # generate primes from True values
primes = sieve(1000000)
#include
#include
#include
using namespace std;
const int MAX_PRIMES=100000000;
bitset nums; // true for each prime
vector primes; // list of primes
void sieve(int n) {
nums.set(); // set all values to true
nums[0] = nums[1] = false;
for(int i=2; i<=sqrt(n)+1; i++) // filter out non-primes
if(nums[i])
for(int j=i*i; j
==== Implementation Notes ====
A C++ [[cpp_std_bitset|bitset]](([[http://www.cplusplus.com/reference/bitset/bitset/]])) is used for additional time/space efficiency to store true/false values. A [[cpp_std_vector|vector]] would also work, but at an increased cost of time and space.
==== Design Principles ====
Operation Sieve of Eratosthenes is quite simple. The sieve starts by assuming all numbers in a given range (2..n) are prime (''True'' values in our list). Then for each number, ''i'', from (2..sqrt(n)) we eliminate any multiples of ''i'' by setting them to ''False''.((We start the inner loop at i2 to avoid many repeated assignments to the same array locations.)) After completion, the ''True'' values indicate indices that are prime (the list of which is generated by the final list comprehension in the ''return'' statement).
==== Analysis ====
The Sieve of Eratosthenes is not the fastest prime sieve available, but it is quick to code, easy to understand and modify, and sufficiently fast for some practical applications.
**Time Complexity:** %%O((n log n)(log log n))%%((http://primes.utm.edu/glossary/page.php?sort=SieveOfEratosthenes))\\
**Space Complexity:** %%O(n)%%
==== Benchmarks ====
This sieve should work reliably for primes up to 106 (Python3) or 107 (C++) in traditional contest settings.((All tests ran on an Intel(R) Xeon(R) X5550 CPU running at 2.67GHz.\\ Results are reported as user time in seconds using the bash builtin ''time'' command.))
^ %%n%% ^ Python3((Python 3.5.2)) ^ C++((c++ -g -O2 -static -std=gnu++14 {files})) ^
^ 105 | .038s | .000s |
^ 106 | .238s | .008s |
^ 107 | - | .060s |
^ 108 | - | .963 |
==== Example Problems ====
| Source | Problem | Difficulty((Difficulty rounded to the nearest 0.5.)) | Solutions (Spoilers) |
| Kattis | [[https://open.kattis.com/problems/happyprime| Happy Happy Prime Prime]] | 2.5/10 | [[http://cs1.utm.edu/icpc/doku.php?id=files:py:happyprime|happyprime.py]] |
| Kattis | [[https://open.kattis.com/problems/goldbach2| Goldbach's Conjecture]] | 3.5/10 | [[http://cs1.utm.edu/icpc/doku.php?id=files:py:goldbach2|goldbach2.py]] |
| Kattis | [[https://open.kattis.com/problems/primesieve|Prime Sieve]] | 5.0/10 | [[http://cs1.utm.edu/icpc/doku.php?id=files:cpp:primesieve|primesieve.cpp]] |
==== Source ====
Implementations are from the pseudocode provided in the Wikipedia article on the [[https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes|Sieve of Eratosthenes]]((Retrieved 08/08/2018)).