当前位置:   article > 正文

[LeetCode] Gas Station_134. gas station c#

134. gas station c#

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.

解题思路:

这套题的题意为,有N个汽油站排成一个环。gas[i]表示第i个汽油站的汽油量,cost[i]表示第i个汽油站到第i+1个汽油站所需要的汽油。假设汽车油箱无限大。那么求出能够让汽车环行一周的一个起始汽油站序号。若不存在,返回-1。

解法1:

两次循环,分别测试每个站点,看是否能够环行一周即可。时间复杂度为O(n^2)。大数据产生超时错误。

  1. class Solution {
  2. public:
  3. int canCompleteCircuit(vector<int>& gas, vector<int>& cost) {
  4. int len = gas.size();
  5. if(len!=cost.size()){
  6. return -1;
  7. }
  8. for(int i=0; i<len; i++){
  9. int left = gas[i] - cost[i];
  10. int j = (i+1)%len;
  11. while(j!=i && left >=0){
  12. left += gas[j] - cost[j];
  13. j = (j+1)%len;
  14. }
  15. if(left>=0){
  16. return i;
  17. }
  18. }
  19. return -1;
  20. }
  21. };
解法2:

水中的鱼的博客中讲述的http://fisherlei.blogspot.com/2013/11/leetcode-gas-station-solution.html。

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

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

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

  1. class Solution {
  2. public:
  3. int canCompleteCircuit(vector<int>& gas, vector<int>& cost) {
  4. int len = gas.size();
  5. if(len!=cost.size()){
  6. return -1;
  7. }
  8. vector<int> dif(len);
  9. int left = 0;
  10. for(int i=0; i<len; i++){
  11. dif[i] = gas[i] - cost[i];
  12. left += dif[i];
  13. }
  14. if(left<0){
  15. return -1;
  16. }
  17. int startIndex = 0;
  18. int sum = 0;
  19. for(int i=0; i<len; i++){
  20. sum += dif[i];
  21. if(sum < 0){
  22. startIndex = i+1;
  23. sum = 0;
  24. }
  25. }
  26. return startIndex;
  27. }
  28. };



声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号