标签:队列 scan 滑动 push can 数据 模拟 元素 const
const int N = 1e6 + 10;
int q[N], hh = 0, rr = -1;
void push(int x) {
q[++rr] = x;
}
void pop() {
++hh;
}
void isempty() {
return hh <= rr;
}
void query() {
cout << q[hh] << endl;
}
const int N = 1e6 + 10;
int a[N],q[N];
int hh, tt;
void solve() {
int n,k; scanf("%d%d",&n,&k);
for(int i = 0; i < n; i++) scanf("%d",&a[i]);
hh = 0, tt = -1;
for(int i = 0; i < n; i++){
if (hh <= tt && i - k + 1 > q[hh]) hh ++ ;
while (hh <= tt && a[q[tt]] >= a[i]) tt -- ;
q[ ++ tt] = i;
if (i >= k - 1) printf("%d ", a[q[hh]]);
}
}
标签:队列 scan 滑动 push can 数据 模拟 元素 const
原文地址:https://www.cnblogs.com/Hot-machine/p/13191769.html