文章目录
LCP18.早餐组合
- 小扣在秋日市集选择了一家早餐摊位,一维整型数组 staple 中记录了每种主食的价格,一维整型数组 drinks 中记录了每种饮料的价格。小扣的计划选择一份主食和一款饮料,且花费不超过 x 元。请返回小扣共有多少种购买方案。
- 注意:答案需要以 1e9 + 7 (1000000007) 为底取模,如:计算初始结果为:1000000008,请返回 1
示例 1:
输入:staple = [10,20,5], drinks = [5,5,2], x = 15
输出:6
解释:小扣有 6 种购买方案,所选主食与所选饮料在数组中对应的下标分别是:
第 1 种方案:staple[0] + drinks[0] = 10 + 5 = 15;
第 2 种方案:staple[0] + drinks[1] = 10 + 5 = 15;
第 3 种方案:staple[0] + drinks[2] = 10 + 2 = 12;
第 4 种方案:staple[2] + drinks[0] = 5 + 5 = 10;
第 5 种方案:staple[2] + drinks[1] = 5 + 5 = 10;
第 6 种方案:staple[2] + drinks[2] = 5 + 2 = 7。
示例 2:
输入:staple = [2,1,1], drinks = [8,9,5,1], x = 9
输出:8
解释:小扣有 8 种购买方案,所选主食与所选饮料在数组中对应的下标分别是:
第 1 种方案:staple[0] + drinks[2] = 2 + 5 = 7;
第 2 种方案:staple[0] + drinks[3] = 2 + 1 = 3;
第 3 种方案:staple[1] + drinks[0] = 1 + 8 = 9;
第 4 种方案:staple[1] + drinks[2] = 1 + 5 = 6;
第 5 种方案:staple[1] + drinks[3] = 1 + 1 = 2;
第 6 种方案:staple[2] + drinks[0] = 1 + 8 = 9;
第 7 种方案:staple[2] + drinks[2] = 1 + 5 = 6;
第 8 种方案:staple[2] + drinks[3] = 1 + 1 = 2;
提示:
1 <= staple.length <= 10^5
1 <= drinks.length <= 10^5
1 <= staple[i],drinks[i] <= 10^5
1 <= x <= 2*10^5
- 思路:这题乍一看其实并不难,难就难在怎么处理超时的情况,比赛的时候疯狂超时,怎么让时间复杂度降下来是这题的关键。可以考虑用排序+双指针,一头一尾,这样就不用再去遍历了
class Solution {
public int breakfastNumber(int[] staple, int[] drinks, int x) {
int res = 0;
Arrays.sort(staple);
Arrays.sort(drinks);
int index = 0;
int index2 = drinks.length - 1;
while(index < staple.length && index2 >= 0){
if(staple[index] + drinks[index2] > x){
index2--;
}else{
res += (index2 + 1);
res %= 1000000007;
index++;
}
}
return res;
}
}
独一无二的出现次数
给你一个整数数组 arr,请你帮忙统计数组中每个数的出现次数。
如果每个数的出现次数都是独一无二的,就返回 true;否则返回 false。
示例 1:
输入:arr = [1,2,2,1,1,3]
输出:true
解释:在该数组中,1 出现了 3 次,2 出现了 2 次,3 只出现了 1 次。没有两个数的出现次数相同。
- 思路一: 利用hashmap + 排序数组暴力破解
class Solution {
public boolean uniqueOccurrences(int[] arr) {
Map<Integer, Integer> map = new HashMap<>();
for(int i = 0; i < arr.length; i++){
map.put(arr[i], map.getOrDefault(arr[i], 0) + 1);
}
int[] res = new int[map.size()];
int index = 0;
for(Integer i : map.keySet()){
res[index++] = map.get(i);
}
Arrays.sort(res);
for(int i = 1; i < res.length; i++){
if(res[i] == res[i - 1]){
return false;
}
}
return true;
}
}
- 思路二: 利用map + set 去重,判断size是否相等即可
class Solution {
public boolean uniqueOccurrences(int[] arr) {
Map<Integer, Integer> map = new HashMap<>();
for(int i = 0; i < arr.length; i++){
map.put(arr[i], map.getOrDefault(arr[i], 0) + 1);
}
return map.size() == (new HashSet<>(map.values())).size();
}
}
本文介绍了两道算法题目:一是寻找早餐组合的方案数量,二是判断数组中每个数的出现次数是否独一无二。通过示例解析及代码实现,展示了如何高效解决这些问题。

4935

被折叠的 条评论
为什么被折叠?



