Editorial for Wesley's Anger Contest 5 Problem 4 - Prison Escape


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.

Authors: Dormi, wleung_bvg

Subtask 1

We can model the prison as a graph where the vertices are the rooms and the edges are the passageways. For each query, we can perform a depth first search to get all vertices on the path from ai to bi (ignoring bi) and all vertices on the path from ci to di. We can then find the first index in the two paths where the vertices are the same.

Time Complexity: O(NQ)

Subtask 2

In this subtask, the graph is a line. We can deal with the queries by checking the midpoint of ai and ci (if it exists) and seeing if it will be reached before Besley reaches bi and the guard reaches di and if they will meet that midpoint at the same time. It can be seen that there is no other point where they can meet.

Time Complexity: O(N+Q)

Subtask 3

For each vertex, we can store the minimum distance to any vertex on the path from 1 to N, as well as the distance to vertex N. We can see that the answer only exists if the distance of vertex ci from vertex N is equal to the distance of vertex 1 from vertex N, and the distance from vertex ci to the path is not equal to the distance from vertex ci to vertex N. If these conditions are satisfied, then the answer is equal to the distance from vertex ci to the path.

Time Complexity: O(N+Q)

Subtask 4

In this subtask, Besley and the guard will meet only if the path from ci to di intersects the path from 1 to N. If the tree is rooted at vertex N, then they only intersect if the lowest common ancestor of ci and di is on the path from 1 to N (it is possible to do this without traditional lowest common ancestor algorithms). It can be seen that when this happens, the path from ci to di will intersect with the path from 1 to N over some path of vertices. We can then use a method similar to subtask 2 to determine if they will meet on this path, adjusting for the time the guard first reaches the path from 1 to N.

Time Complexity: O(N+Q)

Subtask 5

In this subtask, we can root the tree at vertex N. Besley and the guard will only meet if the depth of ai and ci are the same. They will first meet at their lowest common ancestor as long as it is not vertex N. The answer is the difference between the depth of ai and the lowest common ancestor of ai and ci.

Time Complexity: O(N+Q)

Subtask 6

Special thanks to 300iq for providing the idea behind this solution.

It can be proven that if a solution exists, it will always be the middle vertex x on the path from ai to ci. x can be found by first finding the distance between the two vertices using the lowest common ancestor (lca), and then selecting the middle vertex in O(logN) using any standard method (binary lifting, heavy light decomposition, etc…). The distance between two vertices u and v in a tree is depth(u)+depth(v)2depth(lca(u,v)). Here, a solution exists if and only if x is on both the path from ai to bi and on the path from ci to di and is not bi or di. We can check if vertex x is on a path from vertices u to v by checking if the set {lca(x,u),lca(x,v)} is the same as the set {lca(u,v),x}. We can query for the lowest common ancestor (lca) in O(1) time with O(N) or O(NlogN) precomputation using any data structure that supports range minimum queries over Euler tour indices.

Time Complexity: O(N+QlogN)


Comments

There are no comments at the moment.