c++萌新手写单调队列求调

P1886 滑动窗口 /【模板】单调队列

Jason12 @ 2022-03-21 10:37:42

#include <bits/stdc++.h>
  using namespace std;
int n,k,a[1000005],b[1000005],c[1000005],d[1000005],t[1000005],p,q,u,v,w,i;
int main()
{
    std::ios::sync_with_stdio(0);
    cin.tie(); cout.tie();
    cin>>n>>k;
    u=1;
    v=1;
    p=1;
    q=1;
    for (i=1;i<=n;i++)
    {
        cin>>t[i];
        while (t[i]<=t[a[u]] && u>p) u--;
        while (t[i]>=t[b[u]] && v>q) v--;
        a[u++]=i;
        b[v++]=i;
        if (i>=k)
        {
            c[++w]=a[p];
            d[w]=b[q];
        }
        while (a[p]<=i-k) p++;
        while (b[q]<=i-k) q++;
    }
    for (i=1;i<w;i++)
    {
        cout<<t[c[i]]<<" ";
    }
    cout<<t[c[w]]<<endl;
    for (i=1;i<w;i++)
    {
        cout<<t[d[i]]<<" ";
    }
    cout<<t[d[w]]<<endl;
    return 0;
}

样例输入:

8 3
1 3 -1 -3 5 3 6 7

样例输出:

-1 -3 -3 -3 3 3
3 3 5 5 6 7

我的程序的输出:

-1 -3 -3 -3 -3 5
3 3 5 3 6 7

by yinhee @ 2022-04-18 16:05:52

有一说一,最好还是枚举两遍,思路会清晰一些


|