(I've extended this answer to describe a different, and hopefully much faster, algorithm. As a result, some of the comments are a little out of date.)
First, I'll try to clarify the problem:
We have a large lattice. 100,000,000 times 100,000,000 nodes. This is a lot of nodes. A small number, N, of these nodes are the given nodes. We are to find a cycle in the lattice. The cycle does not have to visit every node in the lattice, but it does have to visit each of the given nodes exactly once. And it must visit those given nodes in the given order.
Solution:
There are N shortest paths we must find. We must find:
- The shortest path from
g_1 to g_2, avoiding all the other given nodes
- The shortest path from
g_2 to g_3, avoiding all the other given nodes
- ...
- The shortest path from
g_{N-1} to g_N, avoiding all the other given nodes
- The shortest path from
g_N to g_1, avoiding all the other given nodes
These problems are independent of each other. I'll try to describe a fast algorithm later, but first here's a naive algorithm to find the path from a given source to to a given target node:
- Start with the entire lattice ...
- For each of the N given nodes, apart from the current source node and target node, delete the 4 edges above, below, to the left and to the right.
- Use a standard shortest path algorithm to find the shortest path in the graph between the current source and the current target.
- replace the edges prior to searching for the next shortest path.
That isn't a fast algorithm, but I hope it's correct. It'll be much slower than it could be. We can improve on the standard BFS shortest-path algorithm because we aren't dealing with any arbitrary graph, we are dealing with a lattice.
A fast algorithm
(I think this is a standard A* search algorithm. Thanks to my colleagues in university for pointing this out.)
Assuming you're with me so far, the goal now is to find the shortest path between two nodes on a lattice, where a (small) number of nodes are unusable.
Imagine that each usable node in the lattice has two variables associated with it, an 'upper bound' and a 'lower bound'. These bounds describe the upper and lower bounds on the distance back to the source node. We'll initialize the lower bound with the 'optimistic' Manhattan distance back to the source node ('optimistic' in that we allow all nodes to be used). We initialize the upper bound to be infinite for all nodes, except for the source node which is assigned an upper bound of 0. For a single node, once its upper bound has converged to its lower bound, then this is the correct distance to the source node. The algorithm proceeds, gradually increasing the lower bounds and decreasing the upper bounds, until the bounds at the target node have converged.
At the beginning, the bounds have already converged for the source node. The distance from the source to itself is simply 0.
(Obviously, it's not practical to store all these pairs of numbers for all nodes, but we'll answer that later).
How do we update the bounds? Given any 'current' node, the upper bounds of its neighbours shouldn't be any more than 1 more than the upper bound of the current node. This allows a node to 'pull down' the upper bounds of its neighbours.
Also, if there is a large discrepancy in the lower bounds of two neighbouring nodes, they can affect each other. If node A has a lower bound of 5 and it is connected to node B which has a lower bound of 3, then we can increase the lower bound of B to 4. Proof by contradiction: If B could be reached in just 3 steps, then clearly A could be reached in at most 4 steps by going via B. But this contradicts our knowledge that the lower bound at A is 5. Therefore, the lower bound at B should be increased to 4.
This shows how nodes are able to pull up or push down their neighbours' bounds. We have to turn this idea into an algorithm.
We need to maintain a 'frontier' of nodes. This frontier is the set of nodes that have the potential to affect their neighbours' bounds. Initially the frontier is a singleton set, just containing the source node.
Loop through the following until the bounds have converged at the target node:
- If the frontier is now empty, then the algorithm has failed. The source node is trapped and is unable to reach the target.
- Select the frontier node which is closest ("as the crow flies") to the target node. (You could select any frontier node, but this is an optimistic heuristic). Call this the 'current' node.
- Check whether this 'current' node is able to affect the bounds of its neighbours. (Obviously ignore the unusable nodes).
- If it was unable to affect its neighbours' bounds, then remove the current node from the frontier and return to step 1. (Note: this node might reenter the frontier again later).
- Proceed to modify the neighbours' bounds. For each neighbouring node that is affected, bring it into the frontier (if it's not in already).
- If we have just seen the bounds converge at the target node, then the algorithm is complete.
- Now that we've considered the neighbours, we check whether the bounds had already converged at the current node. If so, we can (permanently) remove the current node from the frontier. We know the correct distance for this node, and have tried our best to incorporate this information into the neighbours' bounds. There is no more we can do with it.
Finally, we have to design a suitable data structure to store these bounds. It's not feasible to explicitly store it for all the points of this huge lattice. I would use a map from C++
// mapping from (x,y) to (upper_bound, lower_bound)
map< pair<int,int>, pair<int,int> > bounds;
Initially, this map would contain only the source node: (source_x, source_y) => (0,0)
When there is an attempt to query this mapping for a node which is not currently present, we can just initialize it as described above with the optimistic Manhatten score for the lower bound and infinity (INT_MAX) for the upper bound. Remember that the algorithm will only be querying this for nodes which are neighbours of the frontier nodes, hence it shouldn't grow too big in many cases. Also, if a node has converged, and all its neighbours have converged (or are unusable) then we can permanently remove it from the map.