信息学奥赛一本通T1597-滑动窗口-题解(C++双指针) 摘要:```cpp #include #include using std::lower_bound; inline bool f(const int*a,const int*b){return *…… 题解列表 2022年06月01日 0 点赞 0 评论 355 浏览 评分:8.0
数组模拟队列 摘要:解题思路:使用数组模拟队列注意事项:没有使用STL,避免超时参考代码:#include<iostream>#include<algorithm>using namespace std;const in…… 题解列表 2023年07月21日 0 点赞 0 评论 118 浏览 评分:9.9
滑动窗口(c++)(数组模拟队列) 摘要:解题思路: 构造单调队列 答案即为队头注意事项: 队列存放数组下标 用scanf和printf更快参考代码:#include<iostream> #include<algorithm> us…… 题解列表 2023年07月28日 0 点赞 0 评论 116 浏览 评分:9.9
手写队列解决滑动窗口 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;const int N = 1e7 + 10, M = …… 题解列表 2023年10月19日 0 点赞 0 评论 71 浏览 评分:0.0