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

Leetcode Gas Station

时间:2015-09-23 14:44:59      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

There are N gas stations along a circular route, where the amount of gas at station i is gas[i].

You have a car with an unlimited gas tank and it costs cost[i] of gas to travel from station i to its next station (i+1). You begin the journey with an empty tank at one of the gas stations.

Return the starting gas station‘s index if you can travel around the circuit once, otherwise return -1.

Note:
The solution is guaranteed to be unique.


解题思路:

本题我没想出来,看的答案,思路很巧妙,记住!!

To solve this problem, we need to understand and use the following 2 facts:
1) if the sum of gas >= the sum of cost, then the circle can be completed.
2) if A can not reach C in a the sequence of A-->B-->C, then B can not make it either.

Proof of fact 2:

If gas[A] < cost[A], then A can not even reach B. 
So to reach C from A, gas[A] must >= cost[A]. 
Given that A can not reach C, we have gas[A] + gas[B] < cost[A] + cost[B],
and gas[A] >= cost[A],
Therefore, gas[B] < cost[B], i.e., B can not reach C. 

In the following solution, sumRemaining tracks the sum of remaining to the current index. If sumRemaining < 0, then every index between old start and current index is bad, and we need to update start to be the current index. You can use the following example to visualize the solution.技术分享

 


Java code

public int canCompleteCircuit(int[] gas, int[] cost) {
        int sumRemaining = 0; //track current remaining
        int total = 0;  // track total ramaining
        int start = 0;
        
        for(int i = 0; i< gas.length; i++){
            int remaining = gas[i] - cost[i];
            
            if(sumRemaining >=0){
                sumRemaining += remaining;
            }else{
                sumRemaining = remaining;
                start = i;
            }
            total += remaining;
        }
        if(total >= 0){
            return start;
        }else {
            return -1;
        }
    }

Reference:

1. http://www.programcreek.com/2014/03/leetcode-gas-station-java/

 

Leetcode Gas Station

标签:

原文地址:http://www.cnblogs.com/anne-vista/p/4831975.html

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