博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Balanced Team
阅读量:4916 次
发布时间:2019-06-11

本文共 514 字,大约阅读时间需要 1 分钟。

https://vjudge.net/problem/CodeForces-1133C

题意:在数组中找出一段  每两个元素差值不大于5的这段元素个数的最大值。

1 #include 
2 #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
View Code

 

转载于:https://www.cnblogs.com/hbhdhd/p/10887471.html

你可能感兴趣的文章
win7系统复制文件到u盘提示文件过大怎么办
查看>>
The path "" is not valid path to the gcc binary.
查看>>
KMP算法
查看>>
NBUT [1369] A Breaking Computer
查看>>
SonarQube4.4+Jenkins进行代码检查实例之三-单元測试分析
查看>>
【转载】appium自动化环境搭建
查看>>
jsp编译、执行过程
查看>>
NOIP2017游记
查看>>
关于js的在ie和Firefox的差别
查看>>
node-webkit无边框窗口用纯JS实现拖动改变大小
查看>>
Extjs grid combo
查看>>
获取<考试>博文密码!o(*≧▽≦)ツ
查看>>
学习进度条
查看>>
leetcode-Subsets II-90
查看>>
In 和Exists
查看>>
shell 命令下载软件 安装软件
查看>>
LCA的五种解法
查看>>
Python 拓展之详解深拷贝和浅拷贝
查看>>
JavaScript备忘录-闭包
查看>>
词频统计报告
查看>>