We can calculate the prime factorization of a number “n” in O(sqrt(n)) as discussed here. But O(sqrt n) method times out when we need to answer multiple queries regarding prime factorization.
In this article, we study an efficient method to calculate the prime factorization using O(n) space and O(log n) time complexity with pre-computation allowed.
Prerequisites : Sieve of Eratosthenes, Least prime factor of numbers till n.
Approach:
The main idea is to precompute the Smallest Prime Factor (SPF) for each number from 1 to MAXN using the sieve function. SPF is the smallest prime number that divides a given number without leaving a remainder. Then, the getFactorization function uses the precomputed SPF array to find the prime factorization of the given number by repeatedly dividing the number by its SPF until it becomes 1.
To calculate to smallest prime factor for every number we will use the sieve of eratosthenes. In the original Sieve, every time we mark a number as not prime, we store the corresponding smallest prime factor for that number (Refer this article for better understanding).
Now, after we are done with precalculating the smallest prime factor for every number we will divide our number n (whose prime factorization is to be calculated) by its corresponding smallest prime factor till n becomes 1.
Pseudo Code for prime factorization assuming
SPFs are computed :
PrimeFactors[] // To store result
i = 0 // Index in PrimeFactors
while n != 1 :
// SPF : smallest prime factor
PrimeFactors[i] = SPF[n]
i++
n = n / SPF[n]
Step-by-step approach of above idea:
- Defines a constant MAXN equal to 100001.
- An integer array spf of size MAXN is declared. This array will store the smallest prime factor for each number up to MAXN.
- A function sieve() is defined to calculate the smallest prime factor of every number up to MAXN using the Sieve of Eratosthenes algorithm.
- The smallest prime factor for the number 1 is set to 1.
- The smallest prime factor for every number from 2 to MAXN is initialized to be the number itself.
- The smallest prime factor for every even number from 4 to MAXN is set to 2.
- The smallest prime factor for every odd number from 3 to the square root of MAXN is calculated by iterating over all odd numbers and checking if the number is prime.
- If a number i is prime, then the smallest prime factor for all numbers divisible by i is set to i.
- A function getFactorization(int x) is defined to return the prime factorization of a given integer x using the spf array.
- The getFactorization(int x) function finds the smallest prime factor of x, pushes it to a vector, and updates x to be the quotient of x divided by its smallest prime factor. This process continues until x becomes 1, at which point the vector of prime factors is returned.
- In the main() function, the sieve() function is called to precalculate the smallest prime factor of every number up to MAXN. Then, the prime factorization of a sample integer x is found using the getFactorization(int x) function, and the result is printed to the console.
The implementation for the above method is given below :
C++
#include "bits/stdc++.h"
using namespace std;
#define MAXN 100001
int spf[MAXN];
void sieve()
{
spf[1] = 1;
for ( int i = 2; i < MAXN; i++)
spf[i] = i;
for ( int i = 4; i < MAXN; i += 2)
spf[i] = 2;
for ( int i = 3; i * i < MAXN; i++) {
if (spf[i] == i) {
for ( int j = i * i; j < MAXN; j += i)
if (spf[j] == j)
spf[j] = i;
}
}
}
vector< int > getFactorization( int x)
{
vector< int > ret;
while (x != 1) {
ret.push_back(spf[x]);
x = x / spf[x];
}
return ret;
}
int main( int argc, char const * argv[])
{
sieve();
int x = 12246;
cout << "prime factorization for " << x << " : " ;
vector< int > p = getFactorization(x);
for ( int i = 0; i < p.size(); i++)
cout << p[i] << " " ;
cout << endl;
return 0;
}
|
Java
import java.util.Vector;
class Test
{
static final int MAXN = 100001 ;
static int spf[] = new int [MAXN];
static void sieve()
{
spf[ 1 ] = 1 ;
for ( int i= 2 ; i<MAXN; i++)
spf[i] = i;
for ( int i= 4 ; i<MAXN; i+= 2 )
spf[i] = 2 ;
for ( int i= 3 ; i*i<MAXN; i++)
{
if (spf[i] == i)
{
for ( int j=i*i; j<MAXN; j+=i)
if (spf[j]==j)
spf[j] = i;
}
}
}
static Vector<Integer> getFactorization( int x)
{
Vector<Integer> ret = new Vector<>();
while (x != 1 )
{
ret.add(spf[x]);
x = x / spf[x];
}
return ret;
}
public static void main(String args[])
{
sieve();
int x = 12246 ;
System.out.print( "prime factorization for " + x + " : " );
Vector <Integer> p = getFactorization(x);
for ( int i= 0 ; i<p.size(); i++)
System.out.print(p.get(i) + " " );
System.out.println();
}
}
|
Python3
import math as mt
MAXN = 100001
spf = [ 0 for i in range (MAXN)]
def sieve():
spf[ 1 ] = 1
for i in range ( 2 , MAXN):
spf[i] = i
for i in range ( 4 , MAXN, 2 ):
spf[i] = 2
for i in range ( 3 , mt.ceil(mt.sqrt(MAXN))):
if (spf[i] = = i):
for j in range (i * i, MAXN, i):
if (spf[j] = = j):
spf[j] = i
def getFactorization(x):
ret = list ()
while (x ! = 1 ):
ret.append(spf[x])
x = x / / spf[x]
return ret
sieve()
x = 12246
print ( "prime factorization for" , x, ": " ,
end = "")
p = getFactorization(x)
for i in range ( len (p)):
print (p[i], end = " " )
|
C#
using System;
using System.Collections;
class GFG
{
static int MAXN = 100001;
static int [] spf = new int [MAXN];
static void sieve()
{
spf[1] = 1;
for ( int i = 2; i < MAXN; i++)
spf[i] = i;
for ( int i = 4; i < MAXN; i += 2)
spf[i] = 2;
for ( int i = 3; i * i < MAXN; i++)
{
if (spf[i] == i)
{
for ( int j = i * i; j < MAXN; j += i)
if (spf[j] == j)
spf[j] = i;
}
}
}
static ArrayList getFactorization( int x)
{
ArrayList ret = new ArrayList();
while (x != 1)
{
ret.Add(spf[x]);
x = x / spf[x];
}
return ret;
}
public static void Main()
{
sieve();
int x = 12246;
Console.Write( "prime factorization for " + x + " : " );
ArrayList p = getFactorization(x);
for ( int i = 0; i < p.Count; i++)
Console.Write(p[i] + " " );
Console.WriteLine( "" );
}
}
|
PHP
<?php
$MAXN = 19999;
$spf = array_fill (0, $MAXN , 0);
function sieve()
{
global $MAXN , $spf ;
$spf [1] = 1;
for ( $i = 2; $i < $MAXN ; $i ++)
$spf [ $i ] = $i ;
for ( $i = 4; $i < $MAXN ; $i += 2)
$spf [ $i ] = 2;
for ( $i = 3; $i * $i < $MAXN ; $i ++)
{
if ( $spf [ $i ] == $i )
{
for ( $j = $i * $i ; $j < $MAXN ; $j += $i )
if ( $spf [ $j ] == $j )
$spf [ $j ] = $i ;
}
}
}
function getFactorization( $x )
{
global $spf ;
$ret = array ();
while ( $x != 1)
{
array_push ( $ret , $spf [ $x ]);
if ( $spf [ $x ])
$x = (int)( $x / $spf [ $x ]);
}
return $ret ;
}
sieve();
$x = 12246;
echo "prime factorization for " .
$x . " : " ;
$p = getFactorization( $x );
for ( $i = 0; $i < count ( $p ); $i ++)
echo $p [ $i ] . " " ;
?>
|
Javascript
<script>
let MAXN = 100001;
let spf= new Array(MAXN);
function sieve()
{
spf[1] = 1;
for (let i=2; i<MAXN; i++)
spf[i] = i;
for (let i=4; i<MAXN; i+=2)
spf[i] = 2;
for (let i=3; i*i<MAXN; i++)
{
if (spf[i] == i)
{
for (let j=i*i; j<MAXN; j+=i)
if (spf[j]==j)
spf[j] = i;
}
}
}
function getFactorization(x)
{
let ret =[];
while (x != 1)
{
ret.push(spf[x]);
x = Math.floor(x / spf[x]);
}
return ret;
}
sieve();
let x = 12246;
document.write( "prime factorization for " + x + " : " );
let p = getFactorization(x);
for (let i=0; i<p.length; i++)
document.write(p[i] + " " );
document.write( "<br>" );
</script>
|
Output:
prime factorization for 12246 : 2 3 13 157
Time Complexity: O(log n), for each query (Time complexity for precomputation is not included)
Auxiliary Space: O(1)
Note : The above code works well for n upto the order of 10^7. Beyond this we will face memory issues.
Time Complexity: The precomputation for smallest prime factor is done in O(n log log n) using sieve. Whereas in the calculation step we are dividing the number every time by the smallest prime number till it becomes 1. So, let’s consider a worst case in which every time the SPF is 2 . Therefore will have log n division steps. Hence, We can say that our Time Complexity will be O(log n) in worst case.
This article is contributed by Nitish Kumar. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.