代码随想录算法训练营第三十天|LeetCode 860,406,452

 

目录

LeetCode 860.柠檬水找零

LeetCode 406.根据身高重建队列

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


LeetCode 860.柠檬水找零

文章讲解:代码随想录

视频讲解:贪心算法,看上去复杂,其实逻辑都是固定的!LeetCode:860.柠檬水找零_哔哩哔哩_bilibili

力扣题目:LeetCode 860.柠檬水找零

 

 

代码如下(Java):

class Solution {
    public boolean lemonadeChange(int[] bills) {
        
        int five = 0;
        int ten = 0;

        for(int i = 0; i < bills.length; i++){
            
            if(bills[i] == 5)
            {
                five++;
            }else if(bills[i] == 10){
                five--;
                ten++;
            }else if(bills[i] == 20){
                if(ten > 0){
                    ten--;
                    five--;
                }else{
                    five -= 3;
                }
            }

            if(five < 0 || ten < 0) return false;
        }

        return true;
    }
}

 

LeetCode 406.根据身高重建队列

文章讲解:代码随想录

视频讲解:贪心算法,不要两边一起贪,会顾此失彼 | LeetCode:406.根据身高重建队列_哔哩哔哩_bilibili

力扣题目:LeetCode 406.根据身高重建队列

 

代码如下(Java): 

class Solution {
    public int[][] reconstructQueue(int[][] people) {
        Arrays.sort(people, (a, b)->{
            if(a[0] == b[0])    return a[1] - b[1];
            return b[0] - a[0];
        });

        LinkedList<int[]> que = new LinkedList<>();

        for(int[] p : people){
            que.add(p[1], p);
        }

        return que.toArray(new int[people.length][]);
    }
}

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

文章讲解:代码随想录

视频讲解:贪心算法,判断重叠区间问题 | LeetCode:452.用最少数量的箭引爆气球_哔哩哔哩_bilibili

力扣题目:LeetCode 452.用最少数量的箭引爆气球

 

代码如下(Java): 

class Solution {
    public int findMinArrowShots(int[][] points) {
        Arrays.sort(points, (a,b) -> Integer.compare(a[0], b[0]));

        int count = 1;

        for(int i = 1; i < points.length; i++){
            if(points[i][0] > points[i-1][1]){
                count++;
            }else{
                points[i][1] = Math.min(points[i][1], points[i-1][1]);
            }
        }

        return count;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值