How to solve spoj COPSEQ?

Правка en2, от Nanami_chan, 2018-08-07 17:26:47

Problem link: here

Harder version of problem: Here

The best way I could think of right now is factorizing using pollard rho and then do O(N*D) dp where D is number of divisors. Problem is D can be up to almost 10^5 for some highly composite numbers.

Another idea that comes to mind is to treat divisors as vertex, connect them if they can be adjacent in the resulting sequence, and find total number of walks with length (n-1) which can be done using matrix power. But this seems even slower because matrix can be large.

Any help is appreciated, thanks!

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en4 Английский Nanami_chan 2018-08-08 04:15:15 369 Tiny change: 'ersion):\nGiven $n <= 10^5\n' -> 'ersion):\n\nGiven **n** <= 10^5\n'
en3 Английский Nanami_chan 2018-08-07 17:28:13 33 Tiny change: 'em link: [here](https' -> 'em link: [Here](https'
en2 Английский Nanami_chan 2018-08-07 17:26:47 322
en1 Английский Nanami_chan 2018-08-07 04:30:37 320 Initial revision (published)