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;
}
}