Editorial for Yet Another Contest 1 P2 - A Boring Problem
Submitting an official solution before solving the problem yourself is a bannable offence.
Authors:
,Note that there are many solutions - just two of them are listed here.
For the intended solution, we will use the term 'path' to imply that it contains more than one node, as this does not affect the answer.
Subtask 1
Instead of counting the number of paths with at least three nodes of the same colour, we will count the number of paths with less than three nodes of the same colour, and subtract this from the total number of paths. Let's refer to a path with less than three nodes of the same colour as a 'bad path'.
The total number of paths in the graph is
For the first subtask, the only bad paths are those with length
Hence, the answer is simply
Time complexity:
Subtask 2
By the pigeonhole principle, any path containing at least five nodes must contain three nodes of the same colour. Therefore, the only bad paths which we have yet to consider are with three or four nodes.
Since the graph is linear, there are only
Time complexity:
Subtask 3
In a general tree graph, it is no longer guaranteed that there are only
Instead, we can precompute
To determine the number of bad paths with three nodes, we can iterate over
To determine the number of bad paths with four nodes, we can iterate over the middle two nodes, corresponding to the edges of the graph. By similar casework, depending on the colours of the middle two nodes, we can determine the number of bad paths with these two nodes in the middle using our precomputed values.
Time complexity:
Alternative Solution
Another solution is to use dynamic programming. Let
To calculate the DP values at a node, we iterate through all of its children. In order to avoid going through all pairs of children, we instead merge each path from a child with all the paths from children that have already been processed. This will also ensure that we do not count any path with the same LCA more than once. The implementation of this process will be left as an exercise for the reader.
Overall, the total number of valid paths is
We will not be over-counting any path since each path has exactly one LCA.
Time complexity:
Comments
What about bad paths with 5 or more nodes? I don't see how there are only bad paths with lengths less than 5.
if you have 5 nodes, then the best you can do to arrange black and white is 3 black and 2 white or vice versa. That includes 3 black which doesn't work. Same thing for any path with 5 or more. They cannot be bad paths
Damn it I misread it as consecutive colours - thanks.