码迷,mamicode.com
首页 > 其他好文 > 详细

CodeForces 632C - C. The Smallest String Concatenation

时间:2016-07-25 16:11:30      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

题意:

n 个 串,把他们按照某个次序连起来 , 使连接后的字符串字典序最小。

做这题的时候我简直是蠢死了.....

 

技术分享

 

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
using namespace std;
const int maxn = 50010;
string str[maxn];
bool cmp(string a, string b)
{
    if((a+b) < (b+a)) return true;    
    return false ;    
}
int main() 
{
    int n;
    scanf("%d",&n);
    for(int i=0;i<n;i++){
        cin>>str[i];
    }
    sort(str,str+n,cmp);
    for(int i=0;i<n;i++){
        cout<<str[i];
    }
    return 0;
}

 

CodeForces 632C - C. The Smallest String Concatenation

标签:

原文地址:http://www.cnblogs.com/ember/p/5703746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!