比赛 |
noip2016普及练习2 |
评测结果 |
AAAAAAAAAA |
题目名称 |
排序测试 |
最终得分 |
100 |
用户昵称 |
Bravo ChaoS |
运行时间 |
5.890 s |
代码语言 |
C++ |
内存使用 |
68.95 MiB |
提交时间 |
2016-11-07 20:09:20 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
using namespace std;
const int maxn=2000010;
class input
{
public:
input & operator >> (int& x)
{
char c=' ';x=0;bool flag=0;
while(c<'0' || c>'9') {if(c=='-') flag=1;c=getchar();}
while(c>='0' && c<='9') x=x*10+c-'0',c=getchar();
if(flag) x=-x;
return *this;
}
}in;
int a,n,mx;
int vis[20000000];
int main()
{
freopen("sorttest.in","r",stdin);
freopen("sorttest.out","w",stdout);
in>>n;
for(int i=0;i<n;++i) in>>a,++vis[a],mx=max(mx,a);
for(int i=0;i<=mx;++i) while(vis[i]--) fprintf(stdout,"%d ",i);
return 0;
}