比赛 |
20190908之惊鸿 |
评测结果 |
AAAAAAAAAA |
题目名称 |
机器翻译 |
最终得分 |
100 |
用户昵称 |
瑆の時間~無盡輪迴·林蔭 |
运行时间 |
0.005 s |
代码语言 |
C++ |
内存使用 |
13.67 MiB |
提交时间 |
2019-09-08 13:08:33 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int sd[3001];
bool pd[3001];
int n,m,x,ans=0,tail=1,head=1;
int main()
{
freopen("translate.in","r",stdin);
freopen("translate.out","w",stdout);
scanf("%d%d",&n,&m);
for(int i=1;i<=m;i++)
{
scanf("%d",&x);
if(pd[x]==0)
{
pd[x]=1;
tail++;
sd[tail]=x;
ans++;
if(tail-head+1>n)
{
pd[sd[head]]=0;
head++;
}
}
}
cout<<ans;
return 0;
}