比赛 |
NOIP2015普及组练习 |
评测结果 |
WWWWEWWWWW |
题目名称 |
字符串子串 |
最终得分 |
0 |
用户昵称 |
WangQL. |
运行时间 |
0.106 s |
代码语言 |
C++ |
内存使用 |
0.16 MiB |
提交时间 |
2015-11-06 20:34:44 |
显示代码纯文本
#include <fstream>
02.#include <string>
03.#include <cstring>
04.#include <algorithm>
05.using namespace std;ifstream fin("substring.in");
06. ofstream fout("substring.out");
07.bool cmp(const string x,const string y)
08.{
09. if(x<y)
10. return 1;
11. else
12. return 0;
13.}
14.int main()
15.{
16.
17. int m;
18. string a[10]="",all="";
19. fin>>m;
20. for(int i=1;i<=m;i++)
21. fin>>a[i];
22. sort(a+1,a+m+1,cmp);
23. for(int j=1;j<=m;j++)
24. all+=a[j];
25. fout<<all<<endl;
26. fin.close();
27. fout.close();
28. return 0;
29.}