Editorial for Another Random Contest 1 P6 - Smash Bros


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.

Author: andy_zhu23

Subtask 1

Since node A is equal to X, Andy can go straight to Y. Thus, the answer is the shortest distance from X to Y.

Time Complexity: O(MlogN)

Subtask 2

Let's call the shortest distance between U and V to be du,v.

For any point A, there must exist a point Z such that the shortest path goes XZAZY. This path results in a cost of dX,Z+dZ,A+dZ,Y (dA,Z is ignored because all nodes on the path have already been unlocked when traversing from Z to A).

Building on that, let's analyze dX,Z+dZ,A+dZ,Y.

dX,Z+dZ,A+dZ,Y can be separated into two parts, dX,Z+dZ,Y and dZ,A. dX,Z+dZ,Y doesn't depend on A, and can be precomputed by running shortest path twice from nodes X and Y. For every query, run shortest path from node A and determine the minimum value of dX,Z+dZ,A+dZ,Y for all possible node Z.

Time Complexity: O(QMlogN)

Subtask 3

Set up an additional node O, and build new edges with every single node in the graph. The edge between O and any node U is going to have a weight of dX,U+dU,Y. Run shortest path algorithm from node O, and the shortest path from node O to any node U is the answer for when A=U. Thus, each query can be answered in O(1).

Time Complexity: O(MlogN+Q)


Comments

There are no comments at the moment.