Queue (队列+二分详解)

There are n walruses standing in a queue in an airport. They are numbered starting from the queue’s tail: the 1-st walrus stands at the end of the queue and the n-th walrus stands at the beginning of the queue. The i-th walrus has the age equal to a i.

The i-th walrus becomes displeased if there’s a younger walrus standing in front of him, that is, if exists such j ( i < j), that a i > a j. The displeasure of the i-th walrus is equal to the number of walruses between him and the furthest walrus ahead of him, which is younger than the i-th one. That is, the further that young walrus stands from him, the stronger the displeasure is.

The airport manager asked you to count for each of n walruses in the queue his displeasure.

Input
The first line contains an integer n (2 ≤ n ≤ 105) — the number of walruses in the queue. The second line contains integers a i (1 ≤ a i ≤ 109).

Note that some walruses can have the same age but for the displeasure to emerge the walrus that is closer to the head of the queue needs to be strictly younger than the other one.

Output
Print n numbers: if the i-th walrus is pleased with everything, print “-1” (without the quotes). Otherwise, print the i-th walrus’s displeasure: the number of other walruses that stand between him and the furthest from him younger walrus.

Examples
Input
6
10 8 5 3 50 45
Output
2 1 0 -1 0 -1
Input
7
10 4 6 3 2 8 15
Output
4 2 1 0 -1 -1 -1
Input
5
10 3 1 10 11
Output
1 0 -1 -1 -1
思路:
重点在于构造年龄单调递减的序列;
最后一个数肯定为-1;
3比50 45都小,故为-1放入队列;此时队里有 45 3;
从队列里找到的第一个比它小的数肯定就是离它最远的比它小的数(因为比队尾大的数都不放入)
在这里插入图片描述
代码
时间复杂度为nlogn;

#include<stdio.h>
#include<iostream>
#define max 100005
using namespace std;
int a[max];
typedef struct node{
	int age;
	int id;
}node; 
node s[max];
int main()
{
	int n,i,j,k;
	int top;
	top=1;
	scanf("%d",&n);
	for(i=1;i<=n;i++){   //下标是从1开始 
		scanf("%d",&a[i]);
	}
	s[top]={a[n],n};   //将所有满意的海象,即值为-1的加入队列中,构造年龄递减且都满意的队列 
	a[n]=-1;//表示满意度, 
	for(i=n-1;i>=1;i--){  //推进 
			int l,r,mid;
			l=1;r=top;
			while(l<=r){    //二分查找的目的是寻找第一个比它小(即距离它最远)的下标,队列是按年龄递减的 
				mid=(l+r)/2;
				if(s[mid].age>=a[i])l=mid+1;
				else r=mid-1; 
			} 
			if(l<=top){     //说明队列中存在比它小的数 
				a[i]=s[l].id-i-1;
			}
			else{           //说明队列中的数都比它大 
				s[++top].age=a[i];   //加入队列 
				s[top].id=i;
				a[i]=-1;
			}
	}
	for(i=1;i<=n;i++){
		printf("%d ",a[i]);
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值