比赛 |
防止颓废的小练习v0.2 |
评测结果 |
AAAAAAAAAA |
题目名称 |
机器翻译 |
最终得分 |
100 |
用户昵称 |
Hzoi_Go灬Fire |
运行时间 |
0.003 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-10-18 12:18:24 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
#include<cmath>
using namespace std;
const int maxn=1010;
bool f[maxn];
int main(){
freopen("translate.in","r",stdin);
freopen("translate.out","w",stdout);
queue<int> q;
int m,n;
scanf("%d %d",&m,&n);
int tot=0,size=0;
for(int i = 1;i<=n;++i){
int x;scanf("%d",&x);
if(!f[x]){
tot++;
if(size==m){
f[q.front()]=0;
q.pop();
}
else size++;
f[x]=1;
q.push(x);
}
}
printf("%d",tot);
return 0;
}