【LeetCode】#134加油站(Gas Station)

【LeetCode】#134加油站(Gas Station)

题目描述

在一条环路上有 N 个加油站,其中第 i 个加油站有汽油 gas[i] 升。
你有一辆油箱容量无限的的汽车,从第 i 个加油站开往第 i+1 个加油站需要消耗汽油 cost[i] 升。你从其中的一个加油站出发,开始时油箱为空。
如果你可以绕环路行驶一周,则返回出发时加油站的编号,否则返回 -1。
说明:
1.如果题目有解,该答案即为唯一答案。
2.输入数组均为非空数组,且长度相同。
3.输入数组中的元素均为非负数。

示例

示例 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 升汽油。
因此,无论怎样,你都不可能绕环路行驶一周。

Description

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 in the clockwise direction, otherwise return -1.
Note:
1.If there exists a solution, it is guaranteed to be unique.
2.Both input arrays are non-empty and have the same length.
3.Each element in the input arrays is a non-negative integer.

Example

Example 1:

Input:
gas = [1,2,3,4,5]
cost = [3,4,5,1,2]
Output: 3
Explanation:
Start at station 3 (index 3) and fill up with 4 unit of gas. Your tank = 0 + 4 = 4
Travel to station 4. Your tank = 4 - 1 + 5 = 8
Travel to station 0. Your tank = 8 - 2 + 1 = 7
Travel to station 1. Your tank = 7 - 3 + 2 = 6
Travel to station 2. Your tank = 6 - 4 + 3 = 5
Travel to station 3. The cost is 5. Your gas is just enough to travel back to station 3.
Therefore, return 3 as the starting index.

Example 2:

Input:
gas = [2,3,4]
cost = [3,4,3]
Output: -1
Explanation:
You can’t start at station 0 or 1, as there is not enough gas to travel to the next station.
Let’s start at station 2 and fill up with 4 unit of gas. Your tank = 0 + 4 = 4
Travel to station 0. Your tank = 4 - 3 + 2 = 3
Travel to station 1. Your tank = 3 - 3 + 3 = 3
You cannot travel back to station 2, as it requires 4 unit of gas but you only have 3.
Therefore, you can’t travel around the circuit once no matter where you start.

解法

class Solution {
    public int canCompleteCircuit(int[] gas, int[] cost) {
       int start = gas.length-1;
       int end = 0;
       int sum = gas[start] - cost[start];
       while (start > end) {
          if (sum >= 0) {
             sum += gas[end] - cost[end];
             ++end;
          }
          else {
             --start;
             sum += gas[start] - cost[start];
          }
       }
       return sum >= 0 ? start : -1;
    }
}
### LeetCode 134 加油站 C语言解决方案 对于LeetCode上的加油站问题,在解决这个问题时,核心在于理解如何遍历数组并计算总油量和所需消耗之间的差值。当总的油量不足以支持整个旅程时,则不可能完成环形路线;反之则一定存在一条路径能够满足条件。 下面是一个基于贪心算法实现的C语言版本解答: ```c bool canCompleteCircuit(int* gas, int gasSize, int* cost, int costSize){ int total_tank = 0; int curr_tank = 0; int starting_station = 0; for (int i = 0; i < gasSize; ++i) { total_tank += gas[i] - cost[i]; curr_tank += gas[i] - cost[i]; // If one couldn&#39;t get here, if (curr_tank < 0) { // Pick up the next station as the starting one. starting_station = i + 1; // Start with an empty tank. curr_tank = 0; } } return total_tank >= 0 ? starting_station : -1; } ``` 此函数接收两个整数类型的指针`gas` 和 `cost`以及它们各自的大小作为参数,并返回一个布尔值表示能否成功环绕一圈回到起点[^1]。通过上述代码实现了对输入数据的有效处理,利用了贪心策略来寻找最优解。 #### 函数解释: - 初始化三个变量用于记录全局剩余油量(`total_tank`)、当前局部剩余油量(`curr_tank`)及起始站点索引(`starting_station`)。 - 使用for循环迭代访问每一个加油点及其对应的行驶成本。 - 更新全局与局部油箱状态。 - 当发现某一站点处无法继续前进时(即`curr_tank<0`),重置局部油箱并将下一站设为新的出发位置。 - 循环结束后判断总体上是否有足够的燃料完成行程,若有则返回最合适的起点编号,否则返回-1表明无解。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值