문제 풀이 보고서 의 CodeForces 91B Queue
Description
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 ai.
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 ai > aj. Thedispleasure 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 thei-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 ai (1 ≤ ai ≤ 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 bestrictly 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.
Sample Input
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 이다.모든 바다사자 의 불 만족 도 를 구하 라. 앞 에 더 젊 은 수출 이 없다 면 - 1.
분석: 우 리 는 바다 코끼리 앞에서 가장 먼 젊 은 바다 코끼리 의 위 치 를 right 로 설정 했다.우 리 는 DP 의 사상 을 고려 합 니 다. 만약 에 나이 가 i 인 바다 코끼리 의 right 를 구한다 면 나이 가 i + 1 인 바다 코끼리 는 i 의 right 를 자신의 right 로 우선 고려 합 니 다. i 의 right 가 i + 1 의 왼쪽 에 있 으 면 나머지 는 오른쪽 에 있 을 수 없 기 때 문 입 니 다.i 의 right 가 i + 1 오른쪽 에 만족 하지 않 으 면 i + 1 오른쪽 에 더 젊 은 것 이 없다 는 것 을 설명 할 수 있 습 니 다. 그렇지 않 으 면 이 더 젊 은 회 i 의 right 이기 때문에 right 는 i + 1 자신의 위치 로 설정 합 니 다.
바다사자 의 위치 와 오른쪽 이 모두 확정 되면 바로 계산 하면 된다.pos 가 아 닌 age 에 따라 정렬 해 야 합 니 다.
상위 코드:
#include
#include
#include
using namespace std;
typedef long long ll;
const int MAXN = 1e5 + 10;
struct W
{
int age, pos, right;
bool operator w[i].pos)
{
w[i].right = w[i - 1].right;
}
disp[w[i].pos] = w[i].right - w[i].pos - 1;
}
for(int i = 1; i < n; i++)
printf( "%d ", disp[i] );
printf( "%d
", disp[n] );
}
return 0;
}
사실 단조 로 운 대열 의 방법 도 있 는데 이해 하기 어렵 고 대충 생각 하 는 것 같 습 니 다.대기 열 은 줄 의 맨 앞 에 있 습 니 다. 줄 의 맨 끝 에 있 는 작은 요소 만 순서대로 삽입 하여 단조 로 운 체감 을 유지 합 니 다. (앞의 숫자 보다 크 면 가장 먼 것 은 현재 이것 이 아 닐 것 입 니 다. 그래서 현재 이것 은 대기 열 에 삽입 해도 소 용이 없습니다.)대열 의 끝 보다 큰 바다 코끼리 에 대해 lowerbound 는 그것 보다 작고 가장 가 까 운 바다 코끼리 를 찾 아 위치 로 줄 이면 된다.
상위 코드:
#include
#include
#include
#include
#define MAX 100002
using namespace std;
int a[MAX],ans[MAX];
vector v,num;
int main()
{
int n;
//freopen("data.txt","r",stdin);
while(~scanf("%d",&n)){
for(int i=0;i=0;i--){
if(v.size()==0 || v.back()>=a[i]){
v.push_back(a[i]); num.push_back(i);
ans[i]=-1;
}else{
int j = (lower_bound(v.rbegin(),v.rend(),a[i]) - v.rbegin());
j = (int)v.size() - j - 1;
ans[i] = num[j+1] - i - 1;
}
}
for(int i=0;i
라 라 라 라 라 라 라 라 라 라, 계속 파 이 팅!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ACM - 계산 기하학 적 Pick - up sticks -- poj 2653Description Stan has n sticks of various length. The data for each case start with 1 <= n <= 100000, the number of stick...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.