Problem Description
A bus has n
stops numbered from 0
to n - 1
that form a circle. We know the distance between all pairs of neighboring stops where distance[i]
is the distance between the stops number i
and (i + 1) % n
. The bus goes along both directions i.e. clockwise and counterclockwise. Return the shortest distance between the given start
and destination
stops.
Key Insights
- The bus stops are arranged in a circular manner, allowing traversal in both clockwise and counterclockwise directions.
- The distance between two stops can be calculated in two ways:
- Clockwise distance from
start
todestination
. - Counterclockwise distance from
start
todestination
.
- Clockwise distance from
- The minimum of these two distances is the answer.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve this problem, we will use an array to store the distances between neighboring bus stops. The algorithm follows these steps:
- Normalize the
start
anddestination
indices to ensure thatstart
is always less than or equal todestination
. - Calculate the total distance of the bus route by summing up all the values in the distance array.
- Compute the clockwise distance from
start
todestination
by summing the distances between these indices. - The counterclockwise distance can be found by subtracting the clockwise distance from the total distance.
- The result is the minimum of the clockwise and counterclockwise distances.