圣诞活动预热开始啦,汉堡店推出了全新的汉堡套餐。为了避免浪费原料,请你帮他们制定合适的制作计划。
给你两个整数?
tomatoSlices
?和?cheeseSlices
,分别表示番茄片和奶酪片的数目。不同汉堡的原料搭配如下:
- 巨无霸汉堡:4 片番茄和 1 片奶酪
- 小皇堡:2 片番茄和?1 片奶酪
请你以?
[total_jumbo, total_small]
([巨无霸汉堡总数,小皇堡总数])的格式返回恰当的制作方案,使得剩下的番茄片?tomatoSlices
?和奶酪片?cheeseSlices
?的数量都是?0
。如果无法使剩下的番茄片?
tomatoSlices
?和奶酪片?cheeseSlices
?的数量为?0
,就请返回?[]
。
class Solution {
public List<Integer> numOfBurgers(int tomatoSlices, int cheeseSlices) {
List<Integer> ans = new ArrayList<>();
int residue = tomatoSlices - cheeseSlices * 2;
if(residue < 0 || residue % 2 == 1 || tomatoSlices > cheeseSlices * 4){
return ans;
} else if(residue == 0){
ans.add(0);
ans.add(cheeseSlices);
} else {
int num = residue / 2;
ans.add(num);
ans.add(cheeseSlices - num);
}
return ans;
}
}