代码随想录算法训练营第三十七天| 860.柠檬水找零,406.根据身高重建队列 ,738.单调递增的数字

860. 柠檬水找零 - 力扣(LeetCode)

class Solution {
    public boolean lemonadeChange(int[] bills) {
        int fiveCount = 0;
        int tenCount = 0;

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

            if(fiveCount<0 || tenCount<0){
                return false;
            }
        }

        return true;
    }
}

406. 根据身高重建队列 - 力扣(LeetCode)

class Solution {
    public int[][] reconstructQueue(int[][] people) {
        //按身高进行排序
        Arrays.sort(people, (o1, o2) -> {
            if(o1[0] != o2[0]){
                return o2[0] - o1[0];
            }else{
                return o1[1] - o2[1];
            }
        });
        
        ArrayList<int[]> result = new ArrayList<>();
        for(int i=0;i<people.length;i++){
            result.add(people[i][1],people[i]);
        }
        
        return result.toArray(new int[people.length][2]);
    }
}

 738. 单调递增的数字 - 力扣(LeetCode)

class Solution {
    public int monotoneIncreasingDigits(int n) {
        if(n<10){
            return n;
        }

        char[] chars = (n + "").toCharArray();
        for(int i=chars.length-1;i>=1;i--){
            if(chars[i]<chars[i-1]){
                for(int j=i;j<chars.length;j++){
                    chars[j] = '9';
                }
                chars[i-1] = (char)(chars[i-1] - 1);
            }
        }

        return Integer.valueOf(new String(chars));
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值