134. Gas Station

Posted 鸵鸟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了134. Gas Station相关的知识,希望对你有一定的参考价值。

class Solution {
    public int canCompleteCircuit(int[] gas, int[] cost) {
        int total=0,cur=0,start=0;
        for(int i=0;i<gas.length;i++)
        {
            cur+=gas[i]-cost[i];
            total+=gas[i]-cost[i];
            if(cur<0)
            {
                cur=0;
                start=i+1;
            }
        }
        return total>=0?start:-1;
    }
}

  

以上是关于134. Gas Station的主要内容,如果未能解决你的问题,请参考以下文章

134.Gas Station

134. Gas Station

134. Gas Station(js)

134. Gas Station

134. Gas Station

134. Gas Station