Editorial for WC '16 Finals S2 - Rational Recipes


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Let's break down our counting of valid recipes by the number of monkeys m which would be served by them. Note that m uniquely determines the value of R1 – in particular, to satisfy m×R1=F1, we must have R1=F1m. This further implies that m must be a divisor of F1.

This is useful due to the fact that F1 can't have many different divisors. In fact, we can find all of them by iterating over each integer i between 1 and F1, inclusive. If F1modi is equal to 0, then i is a divisor of F1. Furthermore, F1i is also a divisor of i – however, if i=F1i, we need to be careful to not count its recipes twice!

Now, for a given value of m, we need to be able to count the number of valid recipes which would serve m monkeys. As shown, there's a single valid value for R1. Meanwhile, each other Ri (for 2iN) can independently be any positive integer such that m×RiFi. The number of such valid values is simply equal to Fim. Overall, the number of valid recipes for a given value of m is then the product of these N1 rounded-down quotients. While computing the running product, we need to be careful to mod it by 10007 after every iteration.

The final answer is the sum of the above counts for all of F1's divisors, again taken modulo 10007. The time complexity of this algorithm is O(F1×N).


Comments

There are no comments at the moment.