forked from y-ncao/Python-Study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGas_Station.py
32 lines (28 loc) · 1.05 KB
/
Gas_Station.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
There are N gas stations along a circular route, where the amount of gas at station i is gas[i].
You have a car with an unlimited gas tank and it costs cost[i] of gas to travel from station i to its next station (i+1). You begin the journey with an empty tank at one of the gas stations.
Return the starting gas station's index if you can travel around the circuit once, otherwise return -1.
Note:
The solution is guaranteed to be unique.
"""
class Solution:
# @param gas, a list of integers
# @param cost, a list of integers
# @return an integer
def canCompleteCircuit(self, gas, cost):
N = len(gas)
start_node = 0
total_gas = 0
cur_gas = 0
for i in range(N):
total_gas += gas[i] - cost[i]
cur_gas += gas[i] - cost[i]
if cur_gas < 0:
start_node = i + 1
cur_gas = 0
if total_gas < 0:
return -1
else:
return start_node % N
# Note:
# 1. Notice line 18 for start node and line 30 for return