当前位置:   article > 正文

【leetcode/python/134】Gas Station_python 134gas.station

python 134gas.station

题目

https://leetcode.com/problems/gas-station/

题目太长了,还是直接贴链接吧~
题目很长,但是理解起来还是比较容易的:

在一条环形的路上有N个加油站,每个加油站里有gas[i]的汽油,从第i个加油站到第i+1个加油站需要花费cost[i]的汽油。假设汽车的油箱可以装无数的汽油,判断一辆没有油的汽车是否可以从其中的某一个加油站出发并行驶一圈后返回该加油站。如果可以的话,返回起始加油站的下标,否则返回-1。

实现代码

class Solution(object):
    def canCompleteCircuit(self, gas, cost):
        """
        :type gas: List[int]
        :type cost: List[int]
        :rtype: int
        """
        if sum(gas) < sum(cost):
            return -1
        length = len(gas)
        
        startIndex,diff  = 0,0
        for i in range(length):
            if gas[i] + diff < cost[i]:
                startIndex = i + 1
                diff = 0
            else:
                diff += gas[i]- cost[i]
        return startIndex
               
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/493509
推荐阅读
相关标签
  

闽ICP备14008679号