加油站(Java)

在一条环路上有 N 个加油站,其中第 i 个加油站有汽油 gas[i] 升。
有一辆油箱容量无限的的汽车,从第 i 个加油站开往第 i+1 个加油站需要消耗汽油 cost[i] 升。从其中的一个加油站出发,开始时油箱为空。
如果可以绕环路行驶一周,则返回出发时加油站的编号,否则返回 -1。

说明:
    如果题目有解,该答案即为唯一答案。
    输入数组均为非空数组,且长度相同。
    输入数组中的元素均为非负数。

示例 1:
输入:
gas  = [1,2,3,4,5]
cost = [3,4,5,1,2]
输出: 3

解释:
从 3 号加油站(索引为 3 处)出发,可获得 4 升汽油。此时油箱有 = 0 + 4 = 4 升汽油
开往 4 号加油站,此时油箱有 4 - 1 + 5 = 8 升汽油
开往 0 号加油站,此时油箱有 8 - 2 + 1 = 7 升汽油
开往 1 号加油站,此时油箱有 7 - 3 + 2 = 6 升汽油
开往 2 号加油站,此时油箱有 6 - 4 + 3 = 5 升汽油
开往 3 号加油站,需要消耗 5 升汽油,正好足够返回到 3 号加油站。
因此,3 可为起始索引。

示例 2:
输入:
gas  = [2,3,4]
cost = [3,4,3]
输出: -1

解释:
不能从 0 号或 1 号加油站出发,因为没有足够的汽油可以行驶到下一个加油站。
从 2 号加油站出发,可以获得 4 升汽油。 此时油箱有 = 0 + 4 = 4 升汽油
开往 0 号加油站,此时油箱有 4 - 3 + 2 = 3 升汽油
开往 1 号加油站,此时油箱有 3 - 3 + 3 = 3 升汽油
无法返回 2 号加油站,因为返程需要消耗 4 升汽油,但是油箱只有 3 升汽油。
因此,无论怎样,都不可能绕环路行驶一周。

package com.loo;

public class GasStation {

    public static void main(String[] args) {
        int[] gas = new int[] {1,2,3,4,5};
        int[] cost = new int[] {3,4,5,1,2};
        System.out.println(getAroundCircleState1(gas , cost));
        System.out.println(getAroundCircleState2(gas , cost));
    }

    public static int getAroundCircleState1(int[] gas , int[] cost) {
        if (gas == null || gas.length == 0 || cost  == null || cost.length == 0 || gas.length != cost.length) {
            System.out.println("getAroundCircleState error!!! , gas:" + gas + ",cost:" + cost + ",gas.length:" + (gas!=null?gas.length:0) + ",cost.length:" + (cost!=null?cost.length:0));
            return -1;
        }
        int N = gas.length;
        int i = 0;
        while (i < N) {                                                                                                                                                                                     
            int cnt = 0;
            int gasCount = 0;
            int costCount = 0;
            while (cnt < N) {
                int j = (i + cnt) % N;
                gasCount += gas[j];
                costCount += cost[j];
                if (gasCount < costCount) {
                    break;
                }
                cnt++;
            }
            if (cnt == N) {
                return i;
            }
            i = i + cnt + 1;
        }
        return -1;
    }

    public static int getAroundCircleState2(int[] gas , int[] cost) {
        if (gas == null || gas.length == 0 || cost  == null || cost.length == 0 || gas.length != cost.length) {
            System.out.println("getAroundCircleState error!!! , gas:" + gas + ",cost:" + cost + ",gas.length:" + (gas!=null?gas.length:0) + ",cost.length:" + (cost!=null?cost.length:0));
            return -1;
        }
        int N = gas.length;
        int start = 0;
        int sum = 0;
        int minSum = Integer.MAX_VALUE;
        for (int i=0;i<N;i++) {
            sum += gas[i] - cost[i];
            if (sum < minSum) {
                start = i+1;
                minSum = sum;
            }
        }
        return sum < 0 ? -1 : start % N;
    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值