codeforces 940A Points on the line (思维)

 Points on the line

题面:

We've got no test cases. A big olympiad is coming up. But the problemsetters' number one priority should be adding another problem to the round.

The diameter of a multiset of points on the line is the largest distance between two points from this set. For example, the diameter of the multiset {1, 3, 2, 1} is 2.

Diameter of multiset consisting of one point is 0.

You are given n points on the line. What is the minimum number of points you have to remove, so that the diameter of the multiset of the remaining points will not exceed d?


Input

The first line contains two integers n and d (1 ≤ n ≤ 100, 0 ≤ d ≤ 100) — the amount of points and the maximum allowed diameter respectively.

The second line contains n space separated integers (1 ≤ xi ≤ 100) — the coordinates of the points.

Output

Output a single integer — the minimum number of points you have to remove.

Examples
input
Copy
3 1
2 1 4
output
1
input
Copy
3 0
7 7 7
output
0
input
Copy
6 3
1 3 4 6 9 10
output
3
Note

In the first test case the optimal strategy is to remove the point with coordinate 4. The remaining points will have coordinates 1 and 2, so the diameter will be equal to 2 - 1 = 1.

In the second test case the diameter is equal to 0, so its is unnecessary to remove any points.

In the third test case the optimal strategy is to remove points with coordinates 19 and 10. The remaining points will have coordinates 34 and 6, so the diameter will be equal to 6 - 3 = 3.

 

看上去好像是搜索,想了一会儿后发现既然是最大值和最小值之间的差,那么数组有序后,就是取一个中间的区间。但是同样是符合条件的区间,用什么办法能取到所求的最大区间?其实不需要,数据很小直接暴力就行了。其实想到是取一个区间这个题就已经做出来了。

[cpp]  view plain  copy
  1. #include <cstdio>  
  2. #include <cstring>  
  3. #include <iostream>  
  4. #include <cmath>  
  5. #include <map>  
  6. #include <algorithm>  
  7. #include <vector>  
  8. #define INF 0x3f3f3f3f  
  9. using namespace std;  
  10. int arr[105];  
  11.   
  12. int main()  
  13. {  
  14.     int n,d;  
  15.     cin>>n>>d;  
  16.     for(int i=0;i<n;i++)  
  17.         cin>>arr[i];  
  18.     sort(arr,arr+n);  
  19.     int ans=-INF;  
  20.     for(int i=0;i<n;i++)  
  21.     {  
  22.         for(int j=0;j<n;j++)  
  23.         {  
  24.             if(arr[j]-arr[i]<=d)  
  25.                 ans=max(ans,j-i+1);  
  26.         }  
  27.     }  
  28.     cout<<n-ans<<endl;  
  29.     return 0;  
  30. }  

猜你喜欢

转载自blog.csdn.net/qq_39027601/article/details/80075733