本文主要是介绍哈尔滨理工大学软件与微电子学院程序设计竞赛(同步赛) L,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- Defeat the monster
- 题解
- AC代码
Defeat the monster
题解
滑动窗口。
先对数组进行排序,然后用双指针法,一个指向最大值,也就是前面,一个指向最小值,也就是后面。前指针不断前移,当前后指针所指向的值的差距大于5时,后指针前移直到差距小于等于5。其间后指针每一次前移前,更新ans的值。
也可以用二分代替双指针。
AC代码
#include <bits/stdc++.h>//#pragma GCC optimize(2)
#define IO ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ull unsigned long long
#define ll long long
#define rep(i, x, y) for(int i=x;i<=y;i++)
#define mms(x, n) memset(x, n, sizeof(x))
#define pre(i, x, y) for(int i = x; i >=y; i--)
#define INF (0x3f3f3f3f)
#define mod (1e9+7)using namespace std;int main() {int n;cin >> n;int a[n];rep(i, 0, n-1)cin >> a[i];sort(a, a + n);int ans = 0;int maxx = 0, minx = 0;while (++maxx<n) {while (a[maxx]-a[minx] > 5) minx++;ans = max(ans, maxx-minx+1);}cout << ans;
}
这篇关于哈尔滨理工大学软件与微电子学院程序设计竞赛(同步赛) L的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!