Problem
Ask
Submissions

Problem: Least Number of Unique Integers after K Removals

Medium
30 min
Explore how to reduce the number of distinct integers in an array by removing exactly k elements. Learn to apply the top k elements pattern with heaps to find the minimum count of unique integers after removal.

Statement

You are given an integer array, arr, and an integer, k. Your task is to remove exactly k elements from the array so that the number of distinct integers remaining in the array is minimized. Determine the minimum possible count of unique integers after the removals.

Constraints:

  • 11 \leq arr.length 103\leq 10^3

  • 11 \leq arr[i] 105\leq 10^5

  • 00 \leq k \leq arr.length

Problem
Ask
Submissions

Problem: Least Number of Unique Integers after K Removals

Medium
30 min
Explore how to reduce the number of distinct integers in an array by removing exactly k elements. Learn to apply the top k elements pattern with heaps to find the minimum count of unique integers after removal.

Statement

You are given an integer array, arr, and an integer, k. Your task is to remove exactly k elements from the array so that the number of distinct integers remaining in the array is minimized. Determine the minimum possible count of unique integers after the removals.

Constraints:

  • 11 \leq arr.length 103\leq 10^3

  • 11 \leq arr[i] 105\leq 10^5

  • 00 \leq k \leq arr.length