Editorial for IOI '08 P2 - Islands
Submitting an official solution before solving the problem yourself is a bannable offence.
We rephrase the problem in terms of graph theory, treating the islands as vertices and bridges as edges. Then the condition of taking a ferry becomes that you cannot add (and immediately traverse) an edge to a vertex that is already connected to your current vertex.
Consider the connected components of the graph. Since you cannot use ferry to jump within a connected component, your track through the component must form a simple path. And since you can start and end at any vertex of the connected component, the problem reduces to finding the longest weighted path in each connected component. The sum of these values over all connected components gives the desired answer.
This becomes the longest path problem, which is NP-complete for general graphs. It can be done using dynamic programming in
It is quite intuitive to see, and not all that difficult to prove the following lemma: (Several methods exist, with induction being the easiest and ugliest way to go.) For any graph, any two of the following three statements imply the remaining one:
- the graph has no cycles
- the graph is connected
- the number of edges is 1 less than the number of vertices in the graph.
(And in all three cases, the graph in question is a tree.)
Let the number of vertices in the connected component be
Note that this observation immediately yields an
We will now show how to get a sub-quadratic solution. Assume that we label the vertices on the cycle
There are 2 cases for the optimal path: either it lies entirely within one of these trees, or it crosses 2 trees by taking a section of the cycle. We deal with these cases separately.
Case 1: Within the same tree.
This reduces to the problem of finding the longest path in a tree. It can be done in
Case 2: Suppose the two trees involved are the ones rooted at
Then the path within the trees should be as long as possible. So for each of the cycle vertices, we will compute the length of the longest path from it to some leaf in its tree. We will denote the length of the longest such path from
There are 2 ways of traveling from
Note this is almost identical to partial sums. We will track the partial sums of the sequence
If we iterate over all pairs of
Using some algebra, this can be rewritten as follows:
Consider the first half,
We can further manipulate this into:
So as we loop upwards on
It is also possible to do the transition without decomposing the two maxes. This can be done by using a 'sliding window' along the cycle. (Note the ordering condition of the two vertices would no longer hold in this setup.) In this situation, we need to remove vertices from consideration as well. This can be implemented for example in
Comments