题目
原题链接:A. Points on the line
题意
给出n个数字,去掉任意个数字保证任意两个数字的差不大于d。
代码
#include
using namespace std;
int main() {
int n,d,s[110],ans=0;
cin>>n>>d;
for(int i=0; i>s[i];
}
sort(s,s+n);
if(s[n-1]-s[0]<=d) {
printf("0\n");
return 0;
}
for(int i=0; i