mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
Time: 722 ms (72.46%), Space: 19 MB (90.27%) - LeetHub
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
class Solution:
|
||||
def canCompleteCircuit(self, gas: List[int], cost: List[int]) -> int:
|
||||
|
||||
# Takes more gas to do a revolution than there is in the stations
|
||||
if sum(cost) > sum(gas):
|
||||
return -1
|
||||
|
||||
n = len(gas)
|
||||
startingIndex = 0
|
||||
while startingIndex < n:
|
||||
# Attempts to compelete a trip around the stations
|
||||
currentGasLevel = 0
|
||||
for i in range(n):
|
||||
j = (i + startingIndex) % n
|
||||
currentGasLevel += gas[j] # Fill up at station j
|
||||
|
||||
currentGasLevel -= cost[j] # Cost to get to station (j+1)
|
||||
|
||||
# Can the car the make it to the next station
|
||||
if currentGasLevel < 0:
|
||||
startingIndex = j + 1
|
||||
break
|
||||
|
||||
else:
|
||||
# Only executed if it made a full revolution
|
||||
return startingIndex
|
||||
|
||||
# Returns if there is no valid index
|
||||
return -1
|
||||
Reference in New Issue
Block a user