Editorial for Another Contest 8 Problem 4 - Up and Down
Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Submitting an official solution before solving the problem yourself is a bannable offence.
The intended solution is with a very good constant factor - this can be done with a single DFS where you track all the pairwise distances as well as the depths of all nodes in the subtree from your DFS, in which case updating the distances can be done in .
Comments