fork download
  1. #include <iostream>
  2. #include <vector>
  3. #include <algorithm>
  4.  
  5. using namespace std;
  6.  
  7. void solve_test_case() {
  8. int n, k;
  9. cin >> n >> k;
  10.  
  11. vector<int> difficulties(n);
  12. for (int i = 0; i < n; i++) {
  13. cin >> difficulties[i];
  14. }
  15.  
  16. // Sort difficulties in ascending order
  17. sort(difficulties.begin(), difficulties.end());
  18.  
  19. // Find the maximum number of problems that can be included
  20. int max_problems = 1;
  21. for (int i = 0; i < n; i++) {
  22. int j = i;
  23. while (j < n && difficulties[j] - difficulties[i] <= k) {
  24. j++;
  25. }
  26. max_problems = max(max_problems, j - i);
  27. }
  28.  
  29. // The answer is the minimum number to remove
  30. cout << n - max_problems << endl;
  31. }
  32.  
  33. int main() {
  34. ios_base::sync_with_stdio(false);
  35. cin.tie(NULL);
  36.  
  37. int t;
  38. cin >> t;
  39.  
  40. while (t--) {
  41. solve_test_case();
  42. }
  43.  
  44. return 0;
  45. }
Success #stdin #stdout 0s 5288KB
stdin
7
5 1
1 2 4 5 6
1 2
10
8 3
17 3 1 20 12 5 17 12
4 2
2 4 6 8
5 3
2 3 19 10 8
3 4
1 10 5
8 1
8 3 1 4 5 10 7 3
stdout
3
0
5
2
3
1
5