贪心专项练习:leetcode134. 加油站

题:
在这里插入图片描述


思:
出发点只能选在gas[i]>=cost[i]的这些位置
每次减去cost[i]如果为负数,则放弃本次循环
如果为正数,则再加上gas[i+1]


码:

public int canCompleteCircuit(int[] gas, int[] cost) {
        Stack stack = new Stack();
        // 寻找合适的初始位置
        for (int i = 0; i < gas.length; i++) {
            if (gas[i] >= cost[i])
                stack.push(i);
        }
        // 开始判断栈里每一条路是否可以走一圈
        while (!stack.empty()) {
            int start = (int) stack.pop();
            int curGas = start == gas.length - 1 ? gas[0] : gas[start + 1];
            curGas += gas[start] - cost[start];
            int term = 0;
            start = start == gas.length - 1 ? 0 : start + 1;
            while (term < gas.length - 1) {
                curGas -= cost[start];
                if (curGas < 0) break;
                if (start == gas.length - 1) start = 0;
                else start++;
                curGas += gas[start];
                term++;
            }
            if (term == gas.length - 1) return start; // 正好回到原点
        }
        return -1;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值