记录编号 42257 评测结果 AAAAAAAAAA
题目名称 字符串子串 最终得分 100
用户昵称 GravatarCloud 是否通过 通过
代码语言 C++ 运行时间 0.006 s
提交时间 2012-09-18 09:59:45 内存使用 3.13 MiB
显示代码纯文本
#include<fstream>
#include<cstring>
#include <algorithm>
using namespace std;
string st[9];
bool cmp(string a,string b)
{
	return a+b<b+a;
};
int main(void)
{
	ifstream fin("substring.in");
	ofstream fout("substring.out");
	int n;
	fin>>n;
	for(int i=0;i<n;i++)
		fin>>st[i];
	string str;
	str.clear();
	sort(st,n+1+st,cmp);
	for(int i=0;i<n;i++)
		str+=st[i];
	fout<<str;
	fin.close();
	fout.close();
	return 0;
}