Editorial for COCI '21 Contest 5 #3 Fliper
Submitting an official solution before solving the problem yourself is a bannable offence.
Clearly, a necessary condition is that the number of bounces in each cycle is divisible by
First off, we need to determine all the cycles in which the ball could get stuck. We can split each obstacle into two pieces, so that each piece corresponds to one side of the obstacle. Then for each
In this way, we've determined for each piece of an obstacle in which cycle it belongs to (or that it doesn't belong to any cycle, but that it's connected to infinity). Now we make a graph: each of the found cycles will be a node in the graph (and there is a dummy node representing infinity), and for each obstacle, we add an edge between the nodes corresponding to the pieces the obstacle is made from. It is possible that an edge connects some node to itself.
Notice that the number of bounces in a cycle now represents the degree of a node. The problem can now be rephrased as follows: given a connected graph where the degree of each node is divisible by
The problem can now be solved using Eulerian tours. Note that if every node in a connected graph has an even degree, we can start an Eulerian tour from some node and color the edges alternately in two colors. In that way, we make it so that each node except for the starting node (which also happens to be the ending node) has an equal number of edges of each of the two colors. This might also hold for the starting node, but only if the number of edges in the graph is even.
For the graph in the problem, we know the degree of each node except the dummy node is divisible by
Comments