I have a problem about fibonacci numbers: ==================
let f[i] be the ith fibonacci number
f[i] = 1 (1 <= i <= 2)
f[i] = f[i-1] + f[i-2] (i > 2)
how can i calculate f[f[n]] mod M (n, M <= 10^9). anyone can help me?
# | User | Rating |
---|---|---|
1 | Benq | 3783 |
2 | jiangly | 3772 |
3 | tourist | 3706 |
4 | maroonrk | 3609 |
5 | Um_nik | 3591 |
6 | fantasy | 3526 |
7 | ko_osaga | 3500 |
8 | inaFSTream | 3477 |
9 | cnnfls_csy | 3427 |
10 | zh0ukangyang | 3423 |
# | User | Contrib. |
---|---|---|
1 | Um_nik | 183 |
2 | awoo | 180 |
3 | nor | 172 |
4 | -is-this-fft- | 171 |
5 | adamant | 170 |
6 | maroonrk | 165 |
7 | antontrygubO_o | 161 |
8 | SecondThread | 159 |
9 | dario2994 | 152 |
9 | kostka | 152 |
I have a problem about fibonacci numbers: ==================
how can i calculate f[f[n]] mod M (n, M <= 10^9). anyone can help me?
Name |
---|
Auto comment: topic has been updated by hoainiem (previous revision, new revision, compare).
https://codeforces.com/blog/entry/18292
i don't think these 2 problems are similar. your problem is calculate the nth fibonacci number , which can be solved by matrix multiplication. but we can't use it to solve my problem because f[n] can be very large, and we can't use modules because (f[f[n]]) mod m is not equal to (f[f[n]mod m] ) mod m
I guess you can try to find pisano period of M, then calculate f[n] mod P(m), where P(i) — pisano period of modulo i, and then calculate the final answer mod M.
Though I'm not sure how to calculate pisano period for such big M, you can try to look for some optimizations here.(also google is your big friend here)
thank you very much. i've tried to google it but i can't find any way to calculate pisano period for m <= 1^9
I (definitely didn't find it in The Ultimate Topic List) found implementation that calculates Pisano period, not sure it'll work with big M, but it might be a good try
i finally get accepted this problem and it's all due to your help. Thanks you.
Glad to hear it :)
Here is the solution https://www.youtube.com/watch?v=dQw4w9WgXcQ
:))
That's a bad way to rickroll people, this tutorial teaches how to do it better.