Editorial for ECOO '13 R3 P2 - Mutant Children
Submitting an official solution before solving the problem yourself is a bannable offence.
Brute Force Approach
The basic idea is to take the two parents and produce both possible children for each pair of crossover points using the method described in the question. You will need nested loops for this, and the number of children produced this way will be proportional to
Because the counting that happens at each step of the algorithm runs in time proportional to
A Better Approach
You might notice that in the above you are duplicating a lot of work. There are at least two better approaches that run in time proportional to
If two children differ only by one place in one of their crossover points, they can only differ in mutation count by
This approach is a little tricky to get exactly right, but it is much faster – it runs in time proportional to
Comments