Editorial for An Animal Contest 1 P5 - Odd Alpacas
Submitting an official solution before solving the problem yourself is a bannable offence.
Authors:
,Subtask 1
We first observe that only the parity of an edge is relevant. Thus, the only relevant change we can make to a road is to change the parity of its length.
For the first subtask, we perform a graph search from each node
Time Complexity:
Subtask 2
Let us denote
The distance between any two nodes
Since
So, we perform a single DFS from an arbitrary root. To determine the number of odd pathways, we multiply the number of villages with an even distance by the number of villages with an odd distance. Complementary counting can be used to determine the number of even pathways.
We repeat this step after changing the parity of each edge and track the minimum absolute difference.
Time Complexity:
Subtask 3
Let us define an "odd" node as an arbitrary village
Similarly, an "even" node is an arbitrary village
The number of "odd" and "even" nodes is used in the previous subtask to calculate the number of odd and even pathways in
Suppose edge
Given this fact, all odd nodes in the subtree will become even nodes and vice versa. All that is left to do is keep track of the number of odd and even nodes in the subtree of each node
Time Complexity:
Comments