比赛 防止颓废的小练习v0.2 评测结果 AAAAAAAAAA
题目名称 机器翻译 最终得分 100
用户昵称 L_in 运行时间 0.009 s
代码语言 C++ 内存使用 0.32 MiB
提交时间 2016-10-18 17:46:12
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<queue>
#define maxn 1100
using namespace std;
/*模拟*/
int K,n,ans,cnt;
bool in[maxn];
queue<int> q;
int main()
{
	freopen("translate.in","r",stdin);
	freopen("translate.out","w",stdout);
	scanf("%d%d",&K,&n);
	int x;
	for(int i=1;i<=n;i++){
		scanf("%d",&x);
		if(!in[x]){
			ans++;
			cnt++;
			if(cnt>K){;
				in[q.front()]=false;
				q.pop();
			}
			q.push(x);
			in[x]=true;
		}
	}
	printf("%d\n",ans);
	fclose(stdin);fclose(stdout);
	return 0;
}