记录编号 93011 评测结果 AAAAAAAAAA
题目名称 [NOIP 2006]明明的随机数 最终得分 100
用户昵称 GravatarWill 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2014-03-23 20:49:21 内存使用 0.29 MiB
显示代码纯文本
#include <stdio.h>
int group[110];
int count=0,x;
int main() {
	int N;
	int flag[1100]={0};
	freopen("random.in","r",stdin);
	freopen("random.out","w",stdout);
	scanf("%d",&N);
	while(N--) {
		scanf("%d",&x);
		if(flag[x]==0) {
			group[count]=x;
			flag[x]=1;
			count++;
		}
	}
	void BubbleSort();
	BubbleSort();
	printf("%d\n",count);
	for(int i=0;i<count;i++) 
		printf("%d ",group[i]);
	return 0;
}
int BubbleSort() {
	for(int i=0;i<count-1;i++)
		for(int j=0;j<count-i-1;j++) {
			if(group[j]>group[j+1]) {
				int temporary=group[j];
				group[j]=group[j+1];
				group[j+1]=temporary;
			}
		}
}