Social Network (easy version) CodeForces - 1234B1(vector)

The only difference between easy and hard versions are constraints on nn and kk.

You are messaging in one of the popular social networks via your smartphone. Your smartphone can show at most kk most recent conversations with your friends. Initially, the screen is empty (i.e. the number of displayed conversations equals 00).

Each conversation is between you and some of your friends. There is at most one conversation with any of your friends. So each conversation is uniquely defined by your friend.

You (suddenly!) have the ability to see the future. You know that during the day you will receive nn messages, the ii-th message will be received from the friend with ID idiidi (1≤idi≤1091≤idi≤109).

If you receive a message from idiidi in the conversation which is currently displayed on the smartphone then nothing happens: the conversations of the screen do not change and do not change their order, you read the message and continue waiting for new messages.

Otherwise (i.e. if there is no conversation with idiidi on the screen):

Firstly, if the number of conversations displayed on the screen is kk, the last conversation (which has the position kk) is removed from the screen.
Now the number of conversations on the screen is guaranteed to be less than kk and the conversation with the friend idiidi is not displayed on the screen.
The conversation with the friend idiidi appears on the first (the topmost) position on the screen and all the other displayed conversations are shifted one position down.
Your task is to find the list of conversations (in the order they are displayed on the screen) after processing all nn messages.

Input
The first line of the input contains two integers nn and kk (1≤n,k≤200)1≤n,k≤200) — the number of messages and the number of conversations your smartphone can show.

The second line of the input contains nn integers id1,id2,…,idnid1,id2,…,idn (1≤idi≤1091≤idi≤109), where idiidi is the ID of the friend which sends you the ii-th message.

Output
In the first line of the output print one integer mm (1≤m≤min(n,k)1≤m≤min(n,k)) — the number of conversations shown after receiving all nn messages.

In the second line print mm integers ids1,ids2,…,idsmids1,ids2,…,idsm, where idsiidsi should be equal to the ID of the friend corresponding to the conversation displayed on the position ii after receiving all nn messages.

Examples
Input
7 2
1 2 3 2 1 3 2
Output
2
2 1
Input
10 4
2 3 3 1 1 2 1 2 3 3
Output
3
1 3 2
Note
In the first example the list of conversations will change in the following way (in order from the first to last message):

[][];
[1][1];
[2,1][2,1];
[3,2][3,2];
[3,2][3,2];
[1,3][1,3];
[1,3][1,3];
[2,1][2,1].
In the second example the list of conversations will change in the following way:

[][];
[2][2];
[3,2][3,2];
[3,2][3,2];
[1,3,2][1,3,2];
and then the list will not change till the end.
考验stl的两道题目。
第一个比较简单因为数据量小,用vector或者双端队列都可以。我用的vector。
代码如下:

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

const int maxx=2e2+10;
vector<int> h;
int n,m;

int main()
{
	while(~scanf("%d%d",&n,&m))
	{
		h.clear();
		int x;
		for(int i=1;i<=n;i++)
		{
			scanf("%d",&x);
			vector<int> ::iterator it=find(h.begin(),h.end(),x);
			if(it!=h.end()) continue;
			else
			{
				if(h.size()<m) h.insert(h.begin(),x);
				else 
				{
					h.pop_back();
					h.insert(h.begin(),x);
				}
			}
		}
		cout<<h.size()<<endl;
		for(int i=0;i<h.size();i++) cout<<h[i]<<" ";
		cout<<endl;
	}
}

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

starlet_kiss

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

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

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

打赏作者

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

抵扣说明:

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

余额充值