Editorial for Bubble Cup V8 B Bribes
Submitting an official solution before solving the problem yourself is a bannable offence.
Let us first provide a suitable interpretation of the task description. The country can obviously be modelled as an undirected graph, where vertices are towns and edges are roads. We see that it is connected (the description mentions that every city is reachable), but we also know that there are
Let us consider just an
Let us now define the notion of a banned (directed) edge: a directed edge
Before delving into these two cases, we need to compute the following three properties for every town
- ends_down: the number of times
was the final stop in a path, this is equal to the number of occurrences of in the array of stops; - ends_up: the number of times
was the highest stop in a path, this is equal to the number of times was the LCA of two consecutive stops; - gone_up: the number of times
was the first stop in a path.
Now we consider the cases:
- If an edge
is up-banned, then the number of times it was traversed is equal to the number of times any vertex in 's subtree was an initial stop, minus the number of times any vertex in 's subtree was the highest stop (i.e. sum of all gone_up's minus the sum of all ends_up's). We may compute these parameters for all vertices at once using just one post-order tree traversal. Thus we can compute the 'bribe contributions' of all up-banned edges in linear time. - If an edge
is down-banned, then the number of times it was traversed is equal to the number of times any vertex in 's subtree was a final stop, minus the number of times any vertex in 's subtree was the highest stop (i.e. sum of all ends_down's minus the sum of all ends_up's). Similar to the previous case, we can compute the 'bribe contributions' of all down-banned edges using only one post-order tree traversal.
Hence, by first computing ends_down, ends_up and gone_up for every vertex, and then traversing the tree, we are able to compute the answer. The final complexity depends on the implementation of LCA. The asymptotically optimal solution to this problem has
Comments