标签:time mes 维护 lin ret 删除 mac 操作 mem
单调队列裸题。
单调队列维护区间最值,对于单调队列有两种操作:
一般情况下,队列中每个元素保存两个值,下标和状态值。
/**********************************************************
* @Author: Kirito
* @Date: 2020-07-26 16:29:46
* @Last Modified by: Kirito
* @Last Modified time: 2020-07-26 17:46:42
* @Remark:
**********************************************************/
#include <bits/stdc++.h>
#define lowbit(x) (x&(-x))
#define CSE(x,y) memset(x,y,sizeof(x))
#define INF 0x3f3f3f3f
#define Abs(x) (x>=0?x:(-x))
#define FAST ios::sync_with_stdio(false);cin.tie(0);
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll , ll> pll;
const int maxn=1111111;
int arr[maxn],n,k;
deque<pii> box;
int main()
{
#ifndef ONLINE_JUDGE
freopen("in.in","r",stdin);
#endif
cin>>n>>k;
for(int i=0;i<n;i++)
cin>>arr[i];
for(int i=0;i<n;i++){
while(!box.empty()&&box.back().second>arr[i])
box.pop_back();
box.push_back(make_pair(i,arr[i]));
while(!box.empty()&&box.front().first<i-k+1)
box.pop_front();
if(i>=k-1)
cout<<box.front().second<<" ";
}
cout<<endl;
while(!box.empty())
box.pop_front();
for(int i=0;i<n;i++){
while(!box.empty()&&box.back().second<arr[i])
box.pop_back();
box.push_back(make_pair(i,arr[i]));
while(!box.empty()&&box.front().first<i-k+1)
box.pop_front();
if(i>=k-1)
cout<<box.front().second<<" ";
}
cout<<endl;
return 0;
}
标签:time mes 维护 lin ret 删除 mac 操作 mem
原文地址:https://www.cnblogs.com/LeafLove/p/13381236.html