comments | difficulty | edit_url | rating | source | tags | ||||
---|---|---|---|---|---|---|---|---|---|
true |
中等 |
1793 |
第 390 场周赛 Q3 |
|
你需要在一个集合里动态记录 ID 的出现频率。给你两个长度都为 n
的整数数组 nums
和 freq
,nums
中每一个元素表示一个 ID ,对应的 freq
中的元素表示这个 ID 在集合中此次操作后需要增加或者减少的数目。
- 增加 ID 的数目:如果
freq[i]
是正数,那么freq[i]
个 ID 为nums[i]
的元素在第i
步操作后会添加到集合中。 - 减少 ID 的数目:如果
freq[i]
是负数,那么-freq[i]
个 ID 为nums[i]
的元素在第i
步操作后会从集合中删除。
请你返回一个长度为 n
的数组 ans
,其中 ans[i]
表示第 i
步操作后出现频率最高的 ID 数目 ,如果在某次操作后集合为空,那么 ans[i]
为 0 。
示例 1:
输入:nums = [2,3,2,1], freq = [3,2,-3,1]
输出:[3,3,2,2]
解释:
第 0 步操作后,有 3 个 ID 为 2 的元素,所以 ans[0] = 3
。
第 1 步操作后,有 3 个 ID 为 2 的元素和 2 个 ID 为 3 的元素,所以 ans[1] = 3
。
第 2 步操作后,有 2 个 ID 为 3 的元素,所以 ans[2] = 2
。
第 3 步操作后,有 2 个 ID 为 3 的元素和 1 个 ID 为 1 的元素,所以 ans[3] = 2
。
示例 2:
输入:nums = [5,5,3], freq = [2,-2,1]
输出:[2,0,1]
解释:
第 0 步操作后,有 2 个 ID 为 5 的元素,所以 ans[0] = 2
。
第 1 步操作后,集合中没有任何元素,所以 ans[1] = 0
。
第 2 步操作后,有 1 个 ID 为 3 的元素,所以 ans[2] = 1
。
提示:
1 <= nums.length == freq.length <= 105
1 <= nums[i] <= 105
-105 <= freq[i] <= 105
freq[i] != 0
- 输入保证任何操作后,集合中的元素出现次数不会为负数。
我们用一个哈希表
每一次操作
时间复杂度
class Solution:
def mostFrequentIDs(self, nums: List[int], freq: List[int]) -> List[int]:
cnt = Counter()
lazy = Counter()
ans = []
pq = []
for x, f in zip(nums, freq):
lazy[cnt[x]] += 1
cnt[x] += f
heappush(pq, -cnt[x])
while pq and lazy[-pq[0]] > 0:
lazy[-pq[0]] -= 1
heappop(pq)
ans.append(0 if not pq else -pq[0])
return ans
class Solution {
public long[] mostFrequentIDs(int[] nums, int[] freq) {
Map<Integer, Long> cnt = new HashMap<>();
Map<Long, Integer> lazy = new HashMap<>();
int n = nums.length;
long[] ans = new long[n];
PriorityQueue<Long> pq = new PriorityQueue<>(Collections.reverseOrder());
for (int i = 0; i < n; ++i) {
int x = nums[i], f = freq[i];
lazy.merge(cnt.getOrDefault(x, 0L), 1, Integer::sum);
cnt.merge(x, (long) f, Long::sum);
pq.add(cnt.get(x));
while (!pq.isEmpty() && lazy.getOrDefault(pq.peek(), 0) > 0) {
lazy.merge(pq.poll(), -1, Integer::sum);
}
ans[i] = pq.isEmpty() ? 0 : pq.peek();
}
return ans;
}
}
class Solution {
public:
vector<long long> mostFrequentIDs(vector<int>& nums, vector<int>& freq) {
unordered_map<int, long long> cnt;
unordered_map<long long, int> lazy;
int n = nums.size();
vector<long long> ans(n);
priority_queue<long long> pq;
for (int i = 0; i < n; ++i) {
int x = nums[i], f = freq[i];
lazy[cnt[x]]++;
cnt[x] += f;
pq.push(cnt[x]);
while (!pq.empty() && lazy[pq.top()] > 0) {
lazy[pq.top()]--;
pq.pop();
}
ans[i] = pq.empty() ? 0 : pq.top();
}
return ans;
}
};
func mostFrequentIDs(nums []int, freq []int) []int64 {
n := len(nums)
cnt := map[int]int{}
lazy := map[int]int{}
ans := make([]int64, n)
pq := hp{}
heap.Init(&pq)
for i, x := range nums {
f := freq[i]
lazy[cnt[x]]++
cnt[x] += f
heap.Push(&pq, cnt[x])
for pq.Len() > 0 && lazy[pq.IntSlice[0]] > 0 {
lazy[pq.IntSlice[0]]--
heap.Pop(&pq)
}
if pq.Len() > 0 {
ans[i] = int64(pq.IntSlice[0])
}
}
return ans
}
type hp struct{ sort.IntSlice }
func (h hp) Less(i, j int) bool { return h.IntSlice[i] > h.IntSlice[j] }
func (h *hp) Push(v any) { h.IntSlice = append(h.IntSlice, v.(int)) }
func (h *hp) Pop() any {
a := h.IntSlice
v := a[len(a)-1]
h.IntSlice = a[:len(a)-1]
return v
}