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

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

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.

 

方法一:直接暴力破解,枚举以每个加油站为起点,时间复杂度为O(n2),空间复杂度为O(1)
方法二:由于车开始时是空油箱而且是无限空间,故其每到一个加油站必加满油,如果油箱内油够到下一个加油站,那就可以继续前行。故我们可以构造一个差值数组。
gas[0] gas[1] gas[2] gas[3]
cost[0] cost[1] cost[2] cost[3]
remain[0] remain[1] remain[2] remain[3]
 
 
 
 
remain[i]表示从加油站i到加油站(i+1)%n车还剩多少油,要让车可以走一圈,那么必须从 j 加油站开始,j需要满足remain[j] >= 0 且 累加右面的remain元素的和都需要为非负值
1 class Solution { 2 public: 3     int canCompleteCircuit(vector
&gas, vector
&cost) { 4 vector
remain(gas.size(), 0); 5 for(int i=0; i

 

 

转载于:https://www.cnblogs.com/bugfly/p/3923032.html

你可能感兴趣的文章
HNOI2018
查看>>
【理财】关于理财的网站
查看>>
Ubunt中文乱码
查看>>
《当幸福来敲门》读后
查看>>
【转】系统无法进入睡眠模式解决办法
查看>>
省市县,循环组装,整合大数组
查看>>
stm32中字节对齐问题(__align(n),__packed用法)
查看>>
like tp
查看>>
posix多线程有感--线程高级编程(线程属性函数总结)(代码)
查看>>
spring-使用MyEcilpse创建demo
查看>>
DCDC(4.5V to 23V -3.3V)
查看>>
kettle导数到user_用于left join_20160928
查看>>
activity 保存数据
查看>>
typescript深copy和浅copy
查看>>
linux下的静态库与动态库详解
查看>>
hbuilder调底层运用,多张图片上传
查看>>
深入理解基于selenium的二次开发
查看>>
较快的maven的settings.xml文件
查看>>
Git之初体验 持续更新
查看>>
Exception in thread "AWT-EventQueue-0" java.lang.IllegalThreadStateException
查看>>