Hi everyone,
(131015-1) / (13-1)
I want to calculate the previous value modulo 36 in an efficient way, how can I do that?
# | 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 | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Hi everyone,
(131015-1) / (13-1)
I want to calculate the previous value modulo 36 in an efficient way, how can I do that?
Name |
---|
Can you provide a link to the problem?
Sorry it is not a CP problem, I know how to calculate the inverse modulo but in this case the denominator (13-1 = 12) and the modulo 36 are not coprime, so I am not sure how to do the calculation in a fast way and without an overflow happening
Here
Thanks for the reply, but my problem is in the division by 12, will this solve my problem?
$$$(13^{10^{15}}-1) = (13-1)(13^{10^{15}-1}+13^{10^{15}-2}+...+13^1+1)$$$
$$$(13^{10^{15}}-1)/(13-1)= (13^{10^{15}-1}+13^{10^{15}-2}+...+13^1+1)$$$
$$$13^n \mod 36 = \begin{cases} 1(n \equiv 0 \mod 3) \\ 13(n \equiv 1 \mod 3) \\ 25(n \equiv 2 \mod 3) \end{cases}$$$
Then, you can just sum up this.
Thank you so much, this is an awesome solution. How to generalize it to find
(an-1)/(a-1) mod m ?
If m is small(<=10^6), you can try above approach (to find a cycle of a^k mod m) in O(m). Or, using modular inverse if you can. I don't have further idea, sorry...
Thank you so much