You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: solution/1100-1199/1184.Distance Between Bus Stops/README_EN.md
+45-25
Original file line number
Diff line number
Diff line change
@@ -94,9 +94,9 @@ tags:
94
94
95
95
### Solution 1: Simulation
96
96
97
-
First, we can calculate the total distance $s$ that the bus travels. Then, we simulate the bus's journey, starting from the departure point, moving one stop to the right each time, until we reach the destination. During the simulation, we can record the distance $a$ from the departure point to the destination. Therefore, the shortest distance from the destination to the departure point is $\min(a, s - a)$.
97
+
We can first calculate the total distance $s$ that the bus travels, then simulate the bus's journey. Starting from the departure point, we move one stop to the right each time until we reach the destination, recording the travel distance $t$ during this process. Finally, we return the minimum value between $t$ and $s - t$.
98
98
99
-
The time complexity is $O(n)$, where $n$ is the number of bus stops. The space complexity is $O(1)$.
99
+
The time complexity is $O(n)$, where $n$ is the length of the array $\textit{distance}$. The space complexity is $O(1)$.
100
100
101
101
<!-- tabs:start -->
102
102
@@ -107,11 +107,12 @@ class Solution:
107
107
defdistanceBetweenBusStops(
108
108
self, distance: List[int], start: int, destination: int
0 commit comments