博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
134. Gas Station
阅读量:2351 次
发布时间:2019-05-10

本文共 2179 字,大约阅读时间需要 7 分钟。

题目

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:

If there exists a solution, it is guaranteed to be unique.

Both input arrays are non-empty and have the same length.
Each element in the input arrays is a non-negative integer.

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.

我的想法

完全按照题目的描述来写的,时间复杂度太高了。

思维阻塞了,与的情况一样

class Solution {
public int canCompleteCircuit(int[] gas, int[] cost) {
for(int i = 0; i < gas.length; i++){
int tank = gas[i] - cost[i]; if(tank < 0) continue; int stat = (i+1) % (gas.length); while(stat != i){
tank += gas[stat]; tank -= cost[stat]; if(tank < 0) break; stat = (stat+1) % (gas.length); } if(stat == i) return i; } return -1; }}

解答

leetcode solution 1:

双指针,如果当前start不满足,则start++,用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; }}

转载地址:http://zbqvb.baihongyu.com/

你可能感兴趣的文章
DirectShow中常见的RGB/YUV格式
查看>>
DirectShow系列讲座之一——DirectShow系统概述
查看>>
DirectShow系列讲座之二——Filter原理
查看>>
DirectShow系列讲座之三——开发自己的Filter
查看>>
DirectShow应用——支持Windows Media格式
查看>>
WDM 视频捕获介绍
查看>>
Directshow中的视频捕捉
查看>>
使用dbghelp生成dump文件以及事后调试分析
查看>>
vs2010编译ActiveX Control Test Container工具
查看>>
windows 内核函数前缀解析
查看>>
漫谈兼容内核之十二:Windows的APC机制
查看>>
ring0和ring3简介
查看>>
DllMain说明及如何获取DLL路径
查看>>
Detour开发包介绍(1):概述
查看>>
Detour开发包介绍(2):使用
查看>>
20.IDA-修改二进制文件、显示修改点
查看>>
Interview with Matt Pietrek - by Chris Maunder, 11 Sep 2000
查看>>
Linux下autoconf和automake使用
查看>>
Linux下Makefile快速编写入门
查看>>
跟我一起写 Makefile(一)
查看>>