134. 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.
思路1:暴力解决,即遍历

public class Solution {
    public int canCompleteCircuit(int[] gas, int[] cost) {
        int n = gas.length;
        for(int i=0;i<n;i++)
        {
            int rest = 0;
            int j;
            for(j = 0;j<n;j++)
            {
                if(gas[(i+j)%n]+rest < cost[(i+j)%n])
                {
                    break;
                }
                rest = gas[(i+j)%n]+rest-cost[(i+j)%n];
            }
            if(j==n){return i;}
        }
        return -1;
    }
}

显然O(n^2) TLE

思路2:动态规划
即求数组的最大连续子串。
由于这是一个循环的数组,那么最大连续(可循环)子串 = max{最大连续子串(不循环),total-最小连续子串}。最大连续子串和的算法很是精度

public int canCompleteCircuit(int[] gas, int[] cost) {
        int n = gas.length;
        int maxPos = 0,maxValue = Integer.MIN_VALUE,maxCurSum = 0;
        int minPos = 0,minValue = Integer.MAX_VALUE,minCurSum = 0;
        int total = 0;
        for(int i=0;i<n;i++)
        {
            total += (gas[i]-cost[i]);
            int tempMaxPos = maxPos;
            if(gas[i]-cost[i] > maxCurSum+gas[i]-cost[i])
            {
                maxCurSum = gas[i]-cost[i];
                tempMaxPos = i;
            }else
                maxCurSum += gas[i]-cost[i];
            if(maxCurSum > maxValue)
            {
                maxPos = tempMaxPos;
                maxValue = maxCurSum;
            }
            if(gas[i]-cost[i] < minCurSum+gas[i]-cost[i])
            {
                minCurSum = gas[i]-cost[i];
            }else
                minCurSum += gas[i]-cost[i];
            if(minCurSum < minValue)
            {
                minPos = i;
                minValue = minCurSum;
            }
        }
        if(maxValue >= (total-minValue) && total>=0)
        {
            //System.out.println(maxPos);
            return maxPos;
        }else
        if(maxValue < (total-minValue) && total>=0)
        {
            System.out.println(minPos);
            return (minPos+1)%n;
        }
         return -1;
    }

思路3:
贪心算法。最为直接。和小于0就不符合要求。
a[i]+..+a[j]<0,则不可能存在p在(i,j)之间使得a[p]+..+a[j]>=0;
反证法:
如果a[p]+..+a[j]>=0 ,则a[i]+..+a[p-1]<0
这显然与我的代码矛盾,因为我每次都对sum<0时,sum置0。

public class Solution {
        public int canCompleteCircuit(int[] gas, int[] cost) {
        int total = 0;
        int sum = 0;
        int pos = 0;
        for(int i=0;i<gas.length;i++)
        {
            total += gas[i]-cost[i];
            sum += gas[i]-cost[i];
            if(sum<0)
            {
                sum = 0;
                pos = i+1;
            }
        }
        if(total<0)
            return -1;
        else
            return pos;
    }
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
用c++解决pipeline system consists of N transfer station, some of which are connected by pipelines. For each of M pipelines the numbers of stations A[i] and B[i], which are connected by this pipeline, and its profitability C[i] are known. A profitability of a pipeline is an amount of dollars, which will be daily yielded in taxes by transferring the gas through this pipeline. Each two stations are connected by not more than one pipeline. The system was built by Soviet engineers, who knew exactly, that the gas was transferred from Ukrainian gas fields to Siberia and not the reverse. That is why the pipelines are unidirectional, i.e. each pipeline allows gas transfer from the station number A[i] to the station number B[i] only. More over, if it is possible to transfer the gas from the station X to the station Y (perhaps, through some intermediate stations), then the reverse transfer from Y to X is impossible. It is known that the gas arrives to the starting station number S and should be dispatched to the buyers on the final station number F. The President ordered the Government to find a route (i.e. a linear sequence of stations which are connected by pipelines) to transfer the gas from the starting to the final station. A profitability of this route should be maximal. A profitability of a route is a total profitability of its pipelines. Unfortunately, the President did not consider that some pipelines ceased to exist long ago, and, as a result, the gas transfer between the starting and the final stations may appear to be impossible... Input The first line contains the integer numbers N (2 ≤ N ≤ 500) and M (0 ≤ M ≤ 124750). Each of the next M lines contains the integer numbers A[i], B[i] (1 ≤ A[i], B[i] ≤ N) and C[i] (1 ≤ C[i] ≤ 10000) for the corresponding pipeline. The last line contains the integer numbers S and F (1 ≤ S, F ≤ N; S ≠ F). Output If the desired route exists, you should output its profitability. Otherwise you should output "No solution".
05-28

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值