Solution: Car Fueling
Solutions for the Car Fueling Problem.
We'll cover the following...
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 is the farthest reachable station. On one hand, it is reachable on a full tank (). On the other hand, the next station is not reachable (). We claim that there must be an optimum solution where the first refuel is at . To prove this, take an optimum solution and let ...