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;
    }
}

  

原文地址:https://www.cnblogs.com/asuran/p/7634045.html