Editorial for TLE '16 Contest 7 P5 - Shortest Path Faster Algorithm
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Important: Make sure that 64-bit integers are used to store the edge weights and store
For subtask 1, the only possible paths are
Note: There are test cases where 0 people can travel either of these paths, and Fail
is the answer for every query.
Time Complexity:
For subtask 2, perform a BFS search to get a valid path, then subtract the road durabilities by 1. Do this 300 times in total, and create a lookup table. Every query can be solved by using the lookup table.
Time Complexity:
For subtask 3, perform a BFS search to get a valid path. Once a valid path is found, find the lowest road durability in the path, and subtract the road durabilities by this value. A lookup table can also be generated. This time, every query must binary search / lower_bound
to find the correct index.
The number of possible paths is
Note: In cases where no path exists between Fail
.
Well-versed programmers may notice similarities with the Edmonds–Karp algorithm.
Time Complexity:
For subtask 4, the first observation is that the path length must be monotonically increasing. It is enough to find paths with
After the new graph is generated, make sure to sort outgoing edges in the new graph. Note that stacks can be used to store the graph. After all operations, this step is
Now, paths can easily be computed from the new graph. DFS is sufficient to grab a path. Make sure to get rid of edges that lead to nowhere. Notice that the runtime of a DFS is
Since there are
Well-versed programmers may notice similarities with Dinic's algorithm.
Time Complexity:
Comments