`

Gas Station

阅读更多
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.

我感觉这是一道比较trick的题目,用贪心算法,解决的关键在于:1,如果从A点出发中途经过几个加油站之后不能到达X点,那么A到X之间任何加油站都不能到达X点。2,如果总的油量大于路上需要消耗的油量,那么一定存在一个加油站,从它开始出发可以走完所有的加油站。知道了上面的两点就可以解决这道题目了,用remain来记录当前的油量,用tatal来记录总的油量,当remain小于0的时候,就说明之前出发的加油站不可以,要从下一个加油站出发,用start来记录从哪个加油站出发。代码如下:
public class Solution {
    public int canCompleteCircuit(int[] gas, int[] cost) {
        int remain = 0;
        int start = 0;
        int total = 0;
        for(int i = 0; i < gas.length; i++) {
            remain += gas[i] - cost[i];
            total += gas[i] - cost[i];
            if(remain < 0) {
                start = i + 1;
                remain = 0;
            }
        }
        return total < 0 ? -1 : start;
    }
}
分享到:
评论

相关推荐

    java-leetcode题解之Gas Station.java

    Gas Station这一题目属于典型的算法问题,主要考察对数组操作、贪心算法的理解和应用。解决这个问题需要思考如何在只遍历一次数组的情况下,判断是否存在一个出发点,使得环形路线可以走完。 Gas Station问题的大致...

    zoj 1861 Gas Station Numbers.md

    zoj 1861 Gas Station Numbers.md

    WPF.GasStation.BLL.dll

    WPF.GasStation.BLL.dll文件,很难找到的dll,各位在程序开发时可以用到

    Gas Station Management System in Python using Django

    例如,"GasStation"模型可以包含站名、地址、营业时间等信息;"FuelType"模型则表示汽油、柴油等不同类型的油品,包括单价等属性;"Transaction"模型用于存储每次加油的详情,如客户信息、加油量、总价等。 接着,...

    Project4[GasStation]

    贪婪算法的一道题,加油站加油,对于掌握贪婪算法比较有用

    js-leetcode题解之134-gas-station.js

    在JavaScript编程中,解决LeetCode上的“Gas Station”问题是一种典型的算法挑战。该问题描述如下:有一个环形的加油站,沿路有若干个站点,每个站点都有一定数量的gas(汽油)和cost(消耗)。汽车从任一站点出发,...

    Optimal Deployment of Electric Vehicle Charging and battery swapping Stations based on gas station network

    基于加油站网络的电动汽车充换电站最优布局模型,陈楚月,华国伟,电动汽车是公认的环境友好型交通工具,电动汽车充换电站的建设对于推广电动汽车具有重要的意义,但是目前在许多城市的充换电站建

    python-leetcode题解之134-Gas-Station

    在探讨Python解决LeetCode上编号为134的“Gas Station”问题时,首先要清楚这个问题的本质。这个问题属于算法和编程的范畴,主要涉及到数组和贪心算法。具体来说,134号题目要求判断是否存在一条路径,使得汽车从某...

    2030年加油站的业务模式创新(Business Model Innovation GAS STATION 2030)(英文)-word资料.pdf

    加油站作为传统能源供应的重要环节,在未来十年面临的挑战与机遇是多方面的。本文件《2030年加油站的业务模式创新》是由来自奥地利经济商会的Dr. Stefan Ebner牵头的研究项目,该研究旨在探索2030年欧洲尤其是奥地利...

    Gas station management system.rar_加油站管理_油站管理系统_油站系统_进存销管理_进存销系统

    该系统为加油站管理系统,内含和数据库建立联系的代码,还有进、销、存、统计等模块功能

    GasStation:加油站模型-开源

    标题中的“GasStation:加油站模型-开源”表明这是一个与加油站管理相关的开源项目。开源软件意味着其源代码对公众开放,允许用户查看、修改和分发,以促进协作和改进。这个系统可能旨在实现加油站的智能化和自动化...

    gasstationleetcode-leetcode_c:leetcode一些题目的C语言解答

    这道题,题目名字就叫gas-station(网址的最后一部分),于是此题目的代码也在gas-station.c文件中。 当一道题通过测试且性能达到预期时,将在git中commit,注释为“测试通过,性能达标”。若commit的注释为其它内容...

    gasstationleetcode-leetcode-in-niuke:在牛客网上的在线编程中的leetcode在线编程题解

    gas ...gas-station 动态规划 palindrome-partitioning-ii 动态规划 triangle 树 sum-root-to-leaf-numbers 动态规划 distinct-subsequences 递归 valid-palindrome 模拟 pascals-triangle 模拟 pasca

    gasstationleetcode-leetcode:简单纪录每日一题

    gas station leetcode 非官方顺序leetcode题解,主要代码为Python和C++。 leetcode 第1题: leetcode 第2题: leetcode 第3题: leetcode 第4题: leetcode 第5题: leetcode 第6题: leetcode 第7题: leetcode 第9...

    gasstationleetcode-algorithm:算法

    gas station leetcode algorithm 记录一下学习算法的一些代码。 冗余连接 II 全排列 II 左叶子之和 子集 把二叉搜索树转换为累加树 监控二叉树 合并二叉树 二叉搜索树中的众数 从中序与后序遍历序列构造二叉树 路径...

    gasstationleetcode-LeetCode-:坚持每天刷一道算法题,冲鸭!!!

    gas station leetcode LeetCode- 坚持每天刷一道算法题,冲鸭!!! day1 验证回文字符串 day2 亲密字符串 柠檬水找零 day3 反转字符串中的单词 day4 三数之和 day5 数组中的第k个最大元素 day6 环形链表II day7 无...

    Introduction to iUMLite 2.20

    In this case study, we will explore the creation and management of a simple gas station system using iUMLite 2.20. We will delve into the details of how to set up the necessary databases, define ...

    加油站(java代码).docx

    首先,定义了一个名为`GasStation`的类,该类包含了两个方法:`canCompleteCircuit`和`main`。 ```java public class GasStation { // ... } ``` ##### 2. 方法 `canCompleteCircuit` 此方法的核心功能在于计算...

    东大22春《大学英语(四)》在线平时作业1

    1.3. With low buildings the variety... The older New England villages have changed relatively little __________ a gas station or two in recent decades. A.except B.besides C.in addition to D.except for 答

    新起点-四下Unit9和10AB卷22.doc

    这个单元旨在帮助孩子们学习和理解与社区设施相关的英语单词,如书店(bookstore)、药店(drugstore)、杂货店(grocery store)、加油站(gas station)、警察局(police station)等,并学习询问和指示地点的句型...

Global site tag (gtag.js) - Google Analytics