题目:
有一条环路 n加油站,其中第一 加油站有汽油gass[i]升。
从第一个开始,你有一辆油箱容量无限的车 i 一个加油站开往第 i+一个加油站需要消耗汽油costt[i]上升。你从其中一个加油站出发,一开始油箱是空的。
给定两个整数数组 gas 和 cost ,如果能按顺序绕道行驶一周,出发时返回加油站号码,否则返回 -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 升汽油。
因此,无论如何,你都不能绕道行驶一周。
代码实现:
class Solution { public int canCompleteCircuit(int[] gas, int[] cost) { int n = gas.length; int i = 0; while (i < n) { int sumOfGas = 0, sumOfCost = 0; int cnt = 0; while (cnt < n) { int j = (i + cnt) % n; sumOfGas += gas[j]; sumOfCost += cost[j]; if (sumOfCost > sumOfGas) { break; } cnt++; } if (cnt == n) { return i; } else { i = i + cnt + 1; } } return -1; }}