376. Wiggle Subsequence(贪心)

1题目描述

2.代码

分析:
1. 起点只能在 [0,N1] 之间,路是环形的
2. 选择 gas[N1] 作为初始的起点,它的下一站是 gas[0] ,那么这样的一个环形队列就很容易维护,当 gas[N1] 作为起点时,加入到达某个 stationi 时剩余汽油小于0= 0 ,那么我们可以通过加入gas[N2],使之构成了以 gas[N2] 为起点的旅程。

class Solution {
public:
    int canCompleteCircuit(vector<int>& gas, vector<int>& cost) {
        int start = gas.size()-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;
    }
}; 

参考leetcode:这里

2.2 双端队列(笔者)

显然,我们也可以通过使用双端队列完成上面的过程,而上面的代码实际模拟的就是一个双端队列。
使用双端队列实现的前插入和后插入,比较容易理解。

class Solution {
public:
    int canCompleteCircuit(vector<int>& gas, vector<int>& cost) {
        int start = gas.size()-1;
        int next = 0;
        int sum = gas[start] - cost[start];
        deque<int> q;
        q.push_back(start);
        int count = 1, total = gas.size();
        while(count < total) {
            if(sum > 0) {
                q.push_front(next);
                sum += gas[next] - cost[next];
                next++;
            } else {
                q.push_back(--start);
                sum += gas[start] - cost[start];
            }
            count++;
        }
        return sum >= 0? start : -1;
    }
}; 

联系邮箱:sysuygm@163.com

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值