How can I find modular multiplicative inverses of a range in linear time?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
How can I find modular multiplicative inverses of a range in linear time?
Name |
---|
Do you want to find a multiplicative inverse for all numbers from 1 to N — 1?
It can be easily done for a prime N, the idea should be obvious if you'll read about primitive roots modulo N.
For non-prime N the idea should also be similar.
I read about primitive roots that -
If the prime number is p, a primitive root g is a number, that when n goes from [1...p - 1], then gn mod p goes through all the numbers [1...p - 1] in some order.
How do I utilize this further? Sorry but I am unable to really understand how to form a relation between modular inverse and primitive root.
If you thought harder, you'd come up with an idea :).
Due to Fermat's Little Theorem: .
if the number with respect to which you are finding the modular inverse (i.e. the 'M' in A%M is prime)you can use the Fermat's little theorem according to which the modular inverse of a number with respect to a prime number (say A and P respectively) is pow(A,P-2)
so in one for loop you may find the modular multiplicative inverses of the numbers in the range but the complexity is O(nlogp) as the power function takes log(p) time
http://e-maxx.ru/algo/reverse_element#4 (it's in russian but you can see the code)
Can you please explain the last step before QED in the proof provided?
What have they done after taking mod m on both sides?
They've multiplied both sides of the equality by
r[i] * r[m mod i]
.