Any optimize idea/hint about this problem?? initially have a idea about calculating trailing 0..... https://open.kattis.com/problems/inversefactorial
№ | Пользователь | Рейтинг |
---|---|---|
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 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Any optimize idea/hint about this problem?? initially have a idea about calculating trailing 0..... https://open.kattis.com/problems/inversefactorial
Название |
---|
There is an editorial on DMOJ: https://dmoj.ca/problem/naq16g.
The title actually got me thinking of this unrelated task. Is it possible?
Can you find the value of $$$n < 10^9$$$, given
n! mod (10^9 + 7)
as the input? In case of multiple solutions, print any.Finally.. https://ideone.com/vyRFbu
Nice idea! Unfortunately, it is not fully correct as-is. The smallest failing test case is 21008! which happens to coincide with 11448! mod 10^9+7. I expect that doing this with two or three primes of that size simultaneously would be enough to fully solve the problem.
But the problem-setters probably didn't anticipate this approach and prepare counter-tests for popular primes like 10^9+7 or 7*17*2^23+1.
The comment actually got me thinking of this unrelated task. Is it possible?
Can you find the value of $$$n<10^9$$$, given
(b, b^n mod (10^9 + 7))
as the input? In case of multiple solutions, print any.Is this simply BSGS Algorithm? It can be solved in $$$\sqrt{mod}$$$ time.
An easy way is the following: find the number of trailing zeros to find the maximum power of 5 that divides this number. Using binary search, you can find the range of 5 integers $$$5n + \varepsilon$$$ with $$$0 \le \varepsilon < 5$$$ which are candidates for the inverse factorial of this number. Using divide and conquer and FFT, you can find the factorial of $$$(5n)!$$$ in $$$O(n \log^2 n)$$$ with a not-so-bad constant factor (since you can work in base $$$10^9$$$). Then count the number of digits in it. For every $$$n > 1$$$, these five numbers have a different number of digits, and the difference between the number of digits can be estimated easily. For $$$n = 1$$$ you can run a brute force.
$$$\ln x!=x\ln x-x+\frac12\ln\sqrt{2\pi}+\frac12\ln x+o(1)$$$ (the o(1) term is between 0 and 0.1 for all $$$x>1$$$) so it might be possible to binary search for the value of $$$x$$$.