Solution: Car Fueling

Solutions for the Car Fueling Problem.

Solution 1: Recursive algorithm

We are going to be greedy; when approaching a gas station, we only stop there if we cannot reach the next one without running out of gas. Pictorially, this looks as follows:

To prove that this strategy leads to an optimum solution, assume that stopkstop_{k} is the farthest reachable station. On one hand, it is reachable on a full tank (stopkmstop_{k} ≤ m). On the other hand, the next station is not reachable (stopk+1>dstop_{k+1} > d). We claim that there must be an optimum solution where the first refuel is at stopkstop_{k}. To prove this, take an optimum solution and let stopistop_{i} ...