记录编号 | 320413 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2010冲刺十]数字积木 | 最终得分 | 100 | ||
用户昵称 | GROWL GOOD BOYส็ | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.043 s | ||
提交时间 | 2016-10-11 21:31:16 | 内存使用 | 0.29 MiB | ||
#include<cstdio> #include<cstring> #include<algorithm> #include<iostream> using namespace std; string s[1010]; bool comp(string a,string b) { string c=a+b,d=b+a; return c>d; } int main() { freopen("brick.in","r",stdin); freopen("brick.out","w",stdout); int N; cin>>N; for(int i=1;i<=N;i++)cin>>s[i]; sort(s+1,s+N+1,comp); for(int i=1;i<=N;i++)cout<<s[i]; fclose(stdin); fclose(stdout); return 0; }