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

[LeetCode]134 Gas Station

时间:2015-01-09 01:54:44      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:leetcode

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

http://blog.csdn.net/linhuanmars/article/details/22706553

public class Solution {
    public int canCompleteCircuit(int[] gas, int[] cost) {
        
        int len = gas.length;

        // Cost if run all stations        
        int allcost = 0;
        
        // Start point
        int start = 0;
        
        // How many gas left
        int left = 0;

        for (int i = 0 ; i < len ; i ++)
        {
            allcost = allcost + gas[i] - cost[i];
            left = left + gas[i] - cost[i];
            if (left < 0)
            {
                start = i + 1;
                left = 0;
            }
        }
        
        if (start == len || allcost < 0)
            return -1;
        else
            return start;
    }
}


[LeetCode]134 Gas Station

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1600752

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