A - Berstagram

本文介绍了一个关于社交网络Berstagram中点赞后帖子排序变化的问题,并提供了一段C++代码实现,该算法通过记录每个帖子最高和最低位置来跟踪其在新闻流中的变化。

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).

#include <stdio.h>
#include <stdlib.h>
#include <algorithm>
#include <iostream>
#include <math.h>
#include <vector>
using namespace std;

const int k=1e5+10;
int t;
int a[k],id[k],maxx[k],minn[k];
int main()
{
    int n,m,i;
    scanf("%d",&n);
    scanf("%d",&m);
    for(i=1; i<=n; i++)
    {
        a[i]=i;
        id[i]=i;
        maxx[i]=i;
        minn[i]=i;
    }
    for(i=1; i<=m; i++)
    {
        scanf("%d",&t);
        int w=id[t];
        int change;
        if(w!=1)
        {
            int r=a[w-1];
            change=id[t];
            id[t]=id[r];
            id[r]=change;
            change=a[w];
            a[w]=a[w-1];
            a[w-1]=change;
            maxx[t]=max(maxx[t],id[t]);
            minn[t]=min(minn[t],id[t]);
            maxx[r]=max(maxx[r],id[r]);
            minn[r]=min(minn[r],id[r]);

        }
    }
    for(i=1; i<=n; i++)
    {
        printf("%d %d\n",minn[i],maxx[i]);
    }
    return 0;
}
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

直接AC好吗

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值