Editorial for Google Code Jam '22 Round 2 Problem C - Saving the Jelly
Submitting an official solution before solving the problem yourself is a bannable offence.
Test Set 1
With
Test Set 2
Firstly, let's construct a bipartite graph with the
It's clear that a necessary (but perhaps not sufficient) condition for Mr. Jolly to get his blueberry jelly is that the graph has a perfect matching.
It turns out, this is also a sufficient condition. Let's try to show this by turning a perfect matching into an order that Mr. Jolly can call the children's names.
Firstly, if there is a child who is matched to the candy that is closest to them, then we can call that child's name and remove them and the candy from the graph.
Otherwise, we are in the situation where every child is matched to a (ungrabbed) candy that is not the closest one to them.
Then, we will find a cycle in the graph using the following procedure. Pick an arbitrary child
- Find the candy
that is closest to child . Go to . This edge is guaranteed not to be part of the current matching. - Find the child
that is currently matched to candy . Go to . This edge is in the current matching.
Eventually, this process will create a cycle of even length (not necessarily including the child we started with). Because we alternated between edges in the matching and edges not in the matching, we can swap the matched edges/unmatched edges to create a new perfect matching. Note that in doing so, all the children in the cycle are now matched to the closest candy to them, so at least one child's name can now be called.
We have shown that a perfect matching is a necessary condition, and that an order can be constructed from a perfect matching that satisfies Mr. Jolly's requirements, thus proving that a perfect matching exists if and only if Mr. Jolly's requirements can be satisfied.
A perfect matching can be found in
Comments