• 小张刷力扣--第三十五天


    860. 柠檬水找零

    题目链接

    难度:简单

    • 题目描述

    在柠檬水摊上,每一杯柠檬水的售价为 5 美元。顾客排队购买你的产品,(按账单 bills 支付的顺序)一次购买一杯。每位顾客只买一杯柠檬水,然后向你付 5 美元、10 美元或 20 美元。你必须给每个顾客正确找零,也就是说净交易是每位顾客向你支付 5 美元。注意,一开始你手头没有任何零钱。给你一个整数数组 bills ,其中 bills[i] 是第 i 位顾客付的账。如果你能给每位顾客正确找零,返回 true ,否则返回 false 。

    解法1

    class Solution {
    public:
        bool lemonadeChange(vector<int>& bills) {
            int five = 0, ten = 0, twenty = 0;
            for (int bill : bills) {
                // 情况一
                if (bill == 5) five++;
                // 情况二
                if (bill == 10) {
                    if (five <= 0) return false;
                    ten++;
                    five--;
                }
                // 情况三
                if (bill == 20) {
                    // 优先消耗10美元,因为5美元的找零用处更大,能多留着就多留着
                    if (five > 0 && ten > 0) {
                        five--;
                        ten--;
                        twenty++; // 其实这行代码可以删了,因为记录20已经没有意义了,不会用20来找零
                    } else if (five >= 3) {
                        five -= 3;
                        twenty++; // 同理,这行代码也可以删了
                    } else return false;
                }
            }
            return true;
        }
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29

    406. 根据身高重建队列

    题目链接

    难度:中等

    • 题目描述

    假设有打乱顺序的一群人站成一个队列,数组 people 表示队列中一些人的属性(不一定按顺序)。每个 people[i] = [hi, ki] 表示第 i 个人的身高为 hi ,前面 正好 有 ki 个身高大于或等于 hi 的人。
    请你重新构造并返回输入数组 people 所表示的队列。返回的队列应该格式化为数组 queue ,其中 queue[j] = [hj, kj] 是队列中第 j 个人的属性(queue[0] 是排在队列前面的人)。

    解法1

    class Solution {
    public:
        // 身高从大到小排(身高相同k小的站前面)
        static bool cmp(const vector<int>& a, const vector<int>& b) {
            if (a[0] == b[0]) return a[1] < b[1];
            return a[0] > b[0];
        }
        vector<vector<int>> reconstructQueue(vector<vector<int>>& people) {
            sort (people.begin(), people.end(), cmp);
            list<vector<int>> que; // list底层是链表实现,插入效率比vector高的多
            for (int i = 0; i < people.size(); i++) {
                int position = people[i][1]; // 插入到下标为position的位置
                std::list<vector<int>>::iterator it = que.begin();
                while (position--) { // 寻找在插入位置
                    it++;
                }
                que.insert(it, people[i]);
            }
            return vector<vector<int>>(que.begin(), que.end());
        }
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    452. 用最少数量的箭引爆气球

    题目链接

    难度:中等

    • 题目描述

    有一些球形气球贴在一堵用 XY 平面表示的墙面上。墙面上的气球记录在整数数组 points ,其中points[i] = [xstart, xend] 表示水平直径在 xstart 和 xend之间的气球。你不知道气球的确切 y 坐标。一支弓箭可以沿着 x 轴从不同点 完全垂直 地射出。在坐标 x 处射出一支箭,若有一个气球的直径的开始和结束坐标为 xstart,xend, 且满足 xstart ≤ x ≤ xend,则该气球会被 引爆 。可以射出的弓箭的数量 没有限制 。 弓箭一旦被射出之后,可以无限地前进。给你一个数组 points ,返回引爆所有气球所必须射出的 最小 弓箭数 。

    解法1

    class Solution {
    private:
        static bool cmp(const vector<int>& a, const vector<int>& b) {
            return a[0] < b[0];
        }
    public:
        int findMinArrowShots(vector<vector<int>>& points) {
            if (points.size() == 0) return 0;
            sort(points.begin(), points.end(), cmp);
    
            int result = 1; // points 不为空至少需要一支箭
            for (int i = 1; i < points.size(); i++) {
                if (points[i][0] > points[i - 1][1]) {  // 气球i和气球i-1不挨着,注意这里不是>=
                    result++; // 需要一支箭
                }
                else {  // 气球i和气球i-1挨着
                    points[i][1] = min(points[i - 1][1], points[i][1]); // 更新重叠气球最小右边界
                }
            }
            return result;
        }
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
  • 相关阅读:
    Minecraft 1.16.5模组开发(五十三) 多种生物类型(Variant)
    轻量封装WebGPU渲染系统示例<4>-CubeMap/天空盒(源码)
    【LeetCode】94. 二叉树的中序遍历 [ 左子树 根结点 右子树 ]
    设计模式之备忘录模式
    Docker面试整理-Docker Swarm与Kubernetes有什么区别?
    三种常见的存储类型
    第七章 Spring依赖注入(注解方式)与整合MyBatis
    如何查找文献,如何阅读文献
    十二、CANdelaStudio入门-Security
    飞机大战Java版完整版
  • 原文地址:https://blog.csdn.net/weixin_46235863/article/details/128149199