LeetCode--gas-station

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.

Analysis:

蛮精巧的一道题。最直白的解法就是从每一个点开始,遍历整个环,然后找出最后剩余油量最大的点。这个是O(n^2)的。但是这题明显不会无聊到让做题人写个两层循环这么简单。

仔细想一下,其实和以前求最大连续子数组和的题很像。 

在任何一个节点,其实我们只关心油的损耗,定义: 

diff[i] = gas[i] – cost[i] 0<=i <n 

那么这题包含两个问题: 

1. 能否在环上绕一圈? 

2. 如果能,这个起点在哪里? 

第一个问题,很简单,我对diff数组做个加和就好了,leftGas = ∑diff[i], 如果最后leftGas是正值,那么肯定存在这么一个起始点。如果是负值,那说明,油的损耗大于油的供给,不可能有解。得到第一个问题的答案只需要O(n)。

对于第二个问题,起点在哪里? 

假设,我们从环上取一个区间[i, j], j>i, 然后对于这个区间的diff加和,定义 

sum[i,j] = ∑diff[k] where i<=k<j 

如果sum[i,j]小于0,那么这个起点肯定不为i,跟第一个问题的原理一样。举个例子,假设i是[0,n]的解,那么我们知道 任意sum[k,i-1] (0<=k<i-1) 肯定是小于0的,否则解就应该是k。同理,sum[i,n]一定是大于0的,否则,解就不应该是i,而是i和n之间的某个点。所以第二题的答案,其实就是在0到n之间,找到第一个连续子序列(这个子序列的结尾必然是n)大于0的。

至此,两个问题都可以在一个循环中解决。

Java

[java]  view plain  copy
  1. public int canCompleteCircuit(int[] gas, int[] cost) {  
  2.         int g = gas.length;  
  3.         int [] diff = new int[g];  
  4.         for(int i=0;i<g;i++){  
  5.             diff[i] = gas[i]-cost[i];  
  6.         }  
  7.         int sum=0;  
  8.         int leftGas = 0;  
  9.         int start = 0;  
  10.         for(int i=0;i<g;i++){  
  11.             leftGas+=diff[i];  
  12.             sum+=diff[i];  
  13.             if(sum<0){  
  14.                 sum = 0;  
  15.                 start = i+1;  
  16.             }  
  17.         }  
  18.         if(leftGas<0return -1;  
  19.         return start;  
  20.     }  
c++

[cpp]  view plain  copy
  1. int canCompleteCircuit(vector<int> &gas, vector<int> &cost) {  
  2.         int len = gas.size();  
  3.         vector<int> diff(gas.size());  
  4.         for(int i=0; i<len; i++){  
  5.             diff[i] = gas[i]-cost[i];  
  6.         }  
  7.         int startnode=0;  
  8.         int tank=0;  
  9.         int sum=0;  
  10.         for(int i=0;i<len;i++){  
  11.             tank += diff[i];  
  12.             sum += diff[i];  
  13.             if(sum<0){  
  14.                 sum = 0;  
  15.                 startnode = i+1;  
  16.             }  
  17.         }  
  18.         if(tank<0)  
  19.             return -1;  
  20.         else   
  21.             return startnode;  
  22.     }  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值