记录编号 447072 评测结果 AAAAAAAAAA
题目名称 [NOIP 2010]机器翻译 最终得分 100
用户昵称 GravatarJustWB 是否通过 通过
代码语言 C++ 运行时间 0.004 s
提交时间 2017-09-09 13:37:12 内存使用 0.32 MiB
显示代码纯文本
#include<cstdio>
#include<queue>
#include<cmath>
#include<iostream>
using namespace std;
inline int get();
int n,m,ans;
bool jud[1005];
queue<int> q;
int main()
{
	freopen("translate.in","r",stdin);
	freopen("translate.out","w",stdout);
	m=get();n=get();
	while(n--)
	{
		register int temp=get();
		temp=abs(temp);
		if(!jud[temp])
		{
			ans++;
			jud[temp]=true;
			q.push(temp);
			if(q.size()>m)
			{
				jud[q.front()]=false;
				q.pop();
			}
		}
	}
	printf("%d",ans);
	return 0;
}
inline int get()
{
	int t=0;char c=getchar(),j=1;
	while(!isdigit(c))
	{
		if(c=='-')j=-1;
		c=getchar();
	}
	while(isdigit(c))
	{
		t=(t<<3)+(t<<1)+c-'0';
		c=getchar();
	}
	return j*t;
}