小 (替换文字 - 「WikiOI」替换为「CodeVS」) |
小 (date) |
||
第1行: | 第1行: | ||
[[分类:模拟与排序]] | [[分类:模拟与排序]] | ||
==摘要== | ==摘要== | ||
− | {{信息题|排序|http://www.codevs.cn/problem/1076/|1|100}} | + | {{信息题|排序|http://www.codevs.cn/problem/1076/|1|100|time=2014/08/16 18:00:27}} |
==题意== | ==题意== | ||
排序。 | 排序。 |
题目链接 | 难度等级 | 完成状态 | 完成分数 | 最后编辑时间 | 需要注意 |
---|---|---|---|---|---|
排序 | ★☆☆☆☆ | 答案正确 | 100 | 2014/08/16 18:00:27 | 无 |
排序。
这题就是排序裸题了,连去重都不用,更多关于排序参阅CodeVS/1075。
1076.cpp代码已折叠
展开折叠内容
|
---|
#include<algorithm> #include<vector> #include<iostream> using namespace std; int main(){ vector<int> a; int n; cin>>n; for(int i=1,u;i<=n;++i) cin>>u, a.push_back(u); sort(a.begin(),a.end()); for(int i=0,u;i<n;++i) cout<<a[i]<<" "; } |