Hi, Can someone please help me out with this problem which appeared in Ad Infinitum 17 on Hackerrank.
Problem Link: https://www.hackerrank.com/contests/infinitum17/challenges/number-of-m-coprime-arrays
Thanks!
# | User | Rating |
---|---|---|
1 | tourist | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 157 |
6 | Qingyu | 155 |
7 | djm03178 | 152 |
7 | adamant | 152 |
9 | luogu_official | 150 |
10 | awoo | 147 |
Hi, Can someone please help me out with this problem which appeared in Ad Infinitum 17 on Hackerrank.
Problem Link: https://www.hackerrank.com/contests/infinitum17/challenges/number-of-m-coprime-arrays
Thanks!
Name |
---|
Consider some prime P in factorization, sequence of powers should not have two consecutive non-zero powers, then you can multiply answers over distinct primes since they are independent. The first part can be done by matrix multiplication. Hint: matrix should have 2x2 size.
Thanks, it helped! Can you provide your code for the problem, it will help :)
It would be better for you to implement own code, this might help: http://www.geeksforgeeks.org/count-number-binary-strings-without-consecutive-1s/, http://codeforces.me/blog/entry/22317
These blogs are what I needed :) Thanks a lot again.