题解 2500: 信息学奥赛一本通T1597-滑动窗口

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

数组模拟队列

摘要:解题思路:使用数组模拟队列注意事项:没有使用STL,避免超时参考代码:#include<iostream>#include<algorithm>using namespace std;const in……

滑动窗口(c++)(数组模拟队列)

摘要:解题思路:  构造单调队列 答案即为队头注意事项:  队列存放数组下标  用scanf和printf更快参考代码:#include<iostream> #include<algorithm> us……

手写队列解决滑动窗口

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;const int N = 1e7 + 10, M = ……