码迷,mamicode.com
首页 > 其他好文 > 详细

134. Gas Station

时间:2017-10-07 12:34:12      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:cost   for   ret   int   gas   div   log   java   can   

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

标签:cost   for   ret   int   gas   div   log   java   can   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!