I am supposed to calculate the following sum :
∑d|n(n/d)∗ϕ(n/d) where the sum is over all divisors (d) of a given number (n) and ϕ(x) is Euler's totient function .
Since the input (n) can be very large (≤107) and the number of test cases are also huge (≤106), hence I am looking for an extremely optimized algorithm.
For this I create a sieve of Eratosthenes setup in which instead of crossing off each multiple, I multiply with (p−1)×(n/p) where p is a prime factor of the element of array and also , I simultaneously update n/p (dividing each time). So, I create this sieve for 107 elements.
Now, I find the divisors in the usual manner in O(√n) complexity. It turns out that this method is slow as the given running time is 1 sec.
Any ideas for further optimization?
Answer
Since you want to compute many values of this multiplicative function, there is an Eratosthenes-inspired way that is (or, I believe, should) be standard.
First, note that f(n)=∑d∣n(n/d)ϕ(n/d)=∑d∣ndϕ(d) is a multiplicative function of n; therefore, f(∏pr)=∏f(pr) for any finite collection of powers pr of distinct primes. Furthermore, it's easy to check directly that f(pr)=(p2r+1+1)/(p+1).
So set up an array of 107 values, each initialized to 1. Then, for every prime power pr, go through and update every prth element of the array, multiplying its value by f(pr)/f(pr−1)=(p2r+1+1)/(p2r−1+1). Once you go through all the prime powers less than 107, the values in the array will be the numbers f(1),…,f(107). The number of multiplications of this type you'll need is quite small, like 107loglog107.
No comments:
Post a Comment