Editorial for DMOPC '15 Contest 3 P6 - Gala
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Consider an empty diagram of

Now, it should be possible to look up the number of ways to connect any group of

We can take this observation a step further by noticing that if there are multiple semicircles within a larger semicircle, and multiple possible combinations all happen to cover up the same number of dots from that semicircle, then the number of ways to complete that portion of the diagram with a known number of dots excluded is constant and can be looked up as a function of

Therefore, for each circle initially drawn in red, find the number of ways different to pair up all quantities of dots from zero to the diameter of the semicircle using the dots contained within it, without erasing this semicircle. For each circle, you can't start finding combinations until the contained circles have already been considered. It might also help to assume that all dots are always covered up by one huge semicircle, and the goal of the program is to find the number of ways to complete the part of the diagram under that semicircle (all of it) without erasing it.
There's one more step, which is to consider for each semicircle in red what would happen if we do not erase this circle. Obviously, we must compute the number of ways to connect all points underneath. Take the stored numbers for this circle discussed earlier, and for every
A final note: building the data structure to store the number of ways to completely connect
Final time complexity:
Comments