Berstagram CodeForces - 1250A(双端链表)

Polycarp recently signed up to a new social network Berstagram. He immediately published n posts there. He assigned numbers from 1 to n to all posts and published them one by one. So, just after publishing Polycarp’s news feed contained posts from 1 to n — the highest post had number 1, the next one had number 2, …, the lowest post had number n.

After that he wrote down all likes from his friends. Likes were coming consecutively from the 1-st one till the m-th one. You are given a sequence a1,a2,…,am (1≤aj≤n), where aj is the post that received the j-th like.

News feed in Berstagram works in the following manner. Let’s assume the j-th like was given to post aj. If this post is not the highest (first) one then it changes its position with the one above. If aj is the highest post nothing changes.

For example, if n=3, m=5 and a=[3,2,1,3,3], then Polycarp’s news feed had the following states:

before the first like: [1,2,3];
after the first like: [1,3,2];
after the second like: [1,2,3];
after the third like: [1,2,3];
after the fourth like: [1,3,2];
after the fifth like: [3,1,2].
Polycarp wants to know the highest (minimum) and the lowest (maximum) positions for each post. Polycarp considers all moments of time, including the moment “before all likes”.

Input
The first line contains two integer numbers n and m (1≤n≤105, 1≤m≤4⋅105) — number of posts and number of likes.

The second line contains integers a1,a2,…,am (1≤aj≤n), where aj is the post that received the j-th like.

Output
Print n pairs of integer numbers. The i-th line should contain the highest (minimum) and the lowest (maximum) positions of the i-th post. You should take into account positions at all moments of time: before all likes, after each like and after all likes. Positions are numbered from 1 (highest) to n (lowest).

Examples
Input
3 5
3 2 1 3 3
Output
1 2
2 3
1 3
Input
10 6
7 3 5 7 3 6
Output
1 2
2 3
1 3
4 7
4 5
6 7
5 7
8 8
9 9
10 10
思路:每次进来新消息,都只有两个交换位置,我们可以用双端链表记录他们之间的位置关系,然后开个数组记录他们的位置,然后不断的更新答案就可以了。
代码如下:

#include<bits/stdc++.h>
#define ll long long
using namespace std;

const int maxm=4e5+100;
const int maxx=1e5+100;
int pre[maxx],nxt[maxx];
int a[maxm],pos[maxx],ansl[maxx],ansr[maxx];
int n,m,x;

inline void init()
{
	for(int i=1;i<=n;i++) pre[i]=i-1,nxt[i]=i+1,pos[i]=i,ansl[i]=i,ansr[i]=i;
}
int main()
{
	scanf("%d%d",&n,&m);
	init();
	for(int i=1;i<=m;i++)
	{
		scanf("%d",&x);
		if(pre[x]!=0)
		{
			int y=pre[x];
			pos[x]--;
			ansl[x]=min(ansl[x],pos[x]);
			pos[y]++;
			ansr[y]=max(ansr[y],pos[y]);
			pre[x]=pre[y];
			pre[nxt[x]]=y;
			nxt[pre[y]]=x;
			nxt[y]=nxt[x];
			pre[y]=x;
			nxt[x]=y;
		}
	}
	for(int i=1;i<=n;i++) cout<<ansl[i]<<" "<<ansr[i]<<endl;
	return 0;
}

努力加油a啊,(o)/~

发布了617 篇原创文章 · 获赞 64 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/starlet_kiss/article/details/105249734