class Solution(object):
def canCompleteCircuit(self, gas, cost):
"""
:type gas: List[int]
:type cost: List[int]
:rtype: int
"""
N=len(gas)
start=0
tank=0
total=0
for i in range(N):
tank+=(gas[i]-cost[i])
#if starting from A and encounter the first unreachable station B, shift to B+1 station to start, but accumulate the total calculated from A to B
if tank<0:
start=i+1
total+=tank
tank=0
return start if total+tank>=0 else -1
134. Gas Station
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 题目: https://leetcode.com/problems/gas-station/ There are ...