随笔分类 -  uva

摘要:#include <iostream> #include <string> #include <cstdio> #include <algorithm> using namespace std; const int maxn=55; string f[maxn]; int n; bool cmp(string a,string b) { return a+b>b+a; } int main() { while(cin>>n&&n) { for(int i=0;i<n;i++) cin>>f[i] 阅读全文
posted @ 2012-12-21 17:11 LJ_COME!!!!! 阅读(147) 评论(0) 推荐(0)