https://vjudge.net/problem/CodeForces-1133C
题意:在数组中找出一段 每两个元素差值不大于5的这段元素个数的最大值。
1 #include2 #include 3 #include 4 #include 5 #include 6 #include 7 8 using namespace std; 9 int main()10 {11 int n;12 int str[200005];13 cin>>n;14 for(int i=0; i >str[i];16 sort(str,str+n);17 int t=0;18 int maxx=0;19 for(int i=0; i