leetcode860. 柠檬水找零

1.题目描述:

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

2.贪心算法:

收到5美元,直接拿进;收到10美元,只能通过5美元来找零,10美元数量+1,5美元数量-1;收到20美元,优先找零10美元和5美元,再考虑找零3张5美元(这就是贪心所在),代码较简单。

class Solution {
    public boolean lemonadeChange(int[] bills) {
        if (bills[0] == 10 || bills[0] == 20) return false;
        int count5 = 0;
        int count10 = 0;
        for (int i = 0; i < bills.length; i++) {
            if (bills[i] == 5) count5++;
            if (bills[i] == 10) {
                count10++;
                if (count5 > 0) count5--;
                else return false;
            }
            if (bills[i] == 20) {
                if (count5 > 0 && count10 > 0) {
                    count5--;
                    count10--;
                } else if (count5 >= 3) count5 -= 3;
                else return false;
            }
        }
        return true;
    }
}

二刷: 不需要hashmap。。

class Solution {
    public boolean lemonadeChange(int[] bills) {
        Map<Integer, Integer> map = new HashMap<>();
        map.put(5, 0);
        map.put(10, 0);
        for (int i = 0; i < bills.length; i++) {
            if (bills[i] == 5) map.put(5, map.get(5) + 1);
            if (bills[i] == 10) {
                map.put(10, map.get(10) + 1);
                if (map.get(5) == 0) return false;
                else map.put(5, map.get(5) - 1);
            }
            if (bills[i] == 20) {
                if (map.get(10) > 0 && map.get(5) > 0) {
                    map.put(10, map.get(10) - 1);
                    map.put(5, map.get(5) - 1);
                } else if (map.get(5) >= 3) {
                    map.put(5, map.get(5) - 3);
                } else {
                    return false;
                }
            }
        }
        return true;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值