记录编号 315647 评测结果 AAAAAAAAAA
题目名称 [NOIP 2010]机器翻译 最终得分 100
用户昵称 GravatarAys 是否通过 通过
代码语言 C++ 运行时间 0.005 s
提交时间 2016-10-05 17:55:25 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio> 
#include<cstring>
using namespace std;
int main(){
	freopen("translate.in","r",stdin);
	freopen("translate.out","w",stdout);
	int a,b,d,tot=0,q=0,qq=0;
	
	scanf("%d%d",&a,&b);
	int c[a-1];
	for(int y=0;y<a-1;y++){
		c[y]=-1;
	}
	for(int i=0;i<b;i++){
		scanf("%d",&d);
		for(int i1=0;i1<a;i1++){
			if(d==c[i1]){
				q=1;
				
				break;
			}
			
		}
		if(q==1)
		q=0;
			
			
		
		else{
		
		//printf("%d ",d);
		tot=tot+1;
		qq=qq+1;
				if(qq==a)
				qq=0;
				c[qq]=d;
		}
	}
	
	printf("%d",tot);
	return 0;
}