C. The Smallest String Concatenation
time limit per test

3 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

You're given a list of n strings a1, a2, ..., an. You'd like to concatenate them together in some order such that the resulting string would be lexicographically smallest.

Given the list of strings, output the lexicographically smallest concatenation.

Input

The first line contains integer n — the number of strings (1 ≤ n ≤ 5·104).

Each of the next n lines contains one string ai (1 ≤ |ai| ≤ 50) consisting of only lowercase English letters. The sum of string lengths will not exceed 5·104.

Output

Print the only string a — the lexicographically smallest string concatenation.

Examples
input
4
abba
abacaba
bcd
er
output
abacabaabbabcder
input
5
x
xx
xxa
xxaa
xxaaa
output
xxaaaxxaaxxaxxx
input
3
c
cb
cba
output
cbacbc
题意:给你n个字符串,输出字典序最小的排序;
思路:写个比较函数cmp(),sort一下再输出就好了;
AC代码:
#include <bits/stdc++.h>
using namespace std;
const int N=1e4+4;
string str[6*N];
int n;
int cmp(string x,string y)
{
return x+y<y+x;
}
int main()
{
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;
}

最新文章

  1. active_record的不定时更新
  2. Autodesk 最新开发技术研讨会 -8月22日-Autodesk北京办公室
  3. Load Mental Ray in Maya 2015
  4. c语言中动态数组的建立
  5. python 中接口的实现
  6. Android Studio 错误 Duplicate files copied in APK META-INF/LICENSE.txt
  7. 2017年iOS应用将强制使用HTTPS安全加密-b
  8. 20151214 jquery插件代码备份
  9. Torque2D MIT 学习笔记(27) ---- ImageFont的使用以及字体ImageAsset的工具生成
  10. Emacs显示行号
  11. NodeJS Stream 二:什么是 Stream
  12. The note of Developing Innovative Ideas for New Companies Course
  13. java内部类(一)
  14. SSL SSH
  15. [EXP]Cisco RV110W - Password Disclosure / Command Execution
  16. MyDO
  17. 【异常及源码分析】org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping
  18. 优先队列优化dij算法
  19. jquery ajax 跨域问题
  20. github(其他类似github)下载到本地配置

热门文章

  1. mysql 与mongodb的特点与优劣
  2. JQuery+Json 省市区三级联动
  3. Hadoop伪分布式环境快速搭建
  4. 【HTML5开发系列】meta元素详解
  5. (转)如何使VMware ip与本机ip处于同一网段
  6. Qt插件开发入门(两种方法:High-Level API接口,Low-Level API接口)
  7. python基础11 ---函数模块1
  8. 自定义xhr请求
  9. 用cocos2d-html5做的消除类游戏《英雄爱消除》——概述
  10. iOS UILabel 省略号 不变色 问题处理