F - Queue CodeForces - 单调队列-二分查找

  • F - Queue

  •  CodeForces - 91B 
  • 维护一个单调递减的队列, 最优被定义为位置要尽可能大。
  • 于是对于一个新入队的数来说,如果他比最小的数大的话。其位置也大于最小的数。则这个数是无用的不需入队,但是可以
  • 在单调队列中二分查找一下最后一个比他的小的数的位置,否则如果最小的数比他大他就找不到了但是要入队。
  • #include
    using namespace std;
    #define maxn 100860
    int ans[maxn];
    int n,a[maxn];
    int que[maxn];
    int head,tail;
    int main()
    {
        head=1;
        scanf("%d",&n);
        for(int i=1; i<=n; i++)
            scanf("%d",&a[i]);
        for(int i=n; i>=1; i--)
        {
            if(head>tail||(head<=tail&&a[que[tail]]>=a[i]))
            {
                ans[i]=-1;
                que[++tail]=i;
            }
            else
            {
                int l=head,r=tail;
                while(l>1;
                    if(a[que[mid]]

     

你可能感兴趣的:(单调栈-队列-ST)