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

本文共 1008 字,大约阅读时间需要 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.

 

可以将两个数组看作一个数组,benifit[i]=gas[i]-cost[i] 即为每一段路净所得的油.

两个原则:1. 如果总benifit为负数,则无论如何都开不完一圈。

2. 如果从一个加油站i出发,开到加油站j所属路段的时候油耗尽,那么从i,j之间的任一个加油站出发都会在j路段或j之前路段耗尽油。

基于以上两个原则,需要一个变量total统计benifit, 需要一个下标start标记起始站,初始为0,需要一个变量tank记录油箱。一旦在过程中某个i处发现tank小于0,那么start标记为i+1,意味着从之前start到i之间的加油站都不能作为起始加油站。

最后,查看total是否小于0.如果是则返回-1,不是则返回start.

代码:

1 public int canCompleteCircuit(int[] gas, int[] cost) { 2         int tank = 0; 3         int start = 0; 4         int total = 0; 5         for(int i=0;i
=0?start:-1;16 }

 

转载于:https://www.cnblogs.com/splash/p/4053238.html

你可能感兴趣的文章
创建本地yum软件源,为本地Package安装Cloudera Manager、Cloudera Hadoop及Impala做准备...
查看>>
mysql8.0.13下载与安装图文教程
查看>>
站立会议08(冲刺2)
查看>>
url查询参数解析
查看>>
http://coolshell.cn/articles/10910.html
查看>>
[转]jsbsim基础概念
查看>>
DIV和SPAN的区别
查看>>
第一次使用cnblogs
查看>>
C#语法糖之 session操作类 asp.net
查看>>
2015 Multi-University Training Contest 3
查看>>
使用Gitblit 在windows 上部署你的Git Server
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>
【2.2】创建博客文章模型
查看>>
【3.1】Cookiecutter安装和使用
查看>>
【2.3】初始Django Shell
查看>>
Linux(Centos)之安装Redis及注意事项
查看>>
bzoj 1010: [HNOI2008]玩具装箱toy
查看>>
Kotlin动态图
查看>>
CentOS软件管理之fastestmirror和RPMforge
查看>>
Apache 流框架 Flink,Spark Streaming,Storm对比分析(一)
查看>>