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

PAT (Advanced Level) 1038. Recover the Smallest Number (30)

时间:2016-05-23 18:44:02      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

注意前导零的消去。

#include <iostream>
#include <string>
#include <sstream>
#include <algorithm>
using namespace std;

string s[10000+10];
int n;

bool cmp(const string &a, const string &b)
{
    return a+b<b+a;
}

int main()
{
    cin>>n;
    for(int i=1;i<=n;i++) cin>>s[i];
    sort(s+1,s+1+n,cmp);
    string ans;
    for(int i=1;i<=n;i++) ans=ans+s[i];

    int flag=0;

    for(int i=0;i<ans.size();i++)
    {
        if(ans[i]!=0)
        {
            flag = 1;
            for(int j=i;j<ans.size();j++) cout<<ans[j];
            break;
        }
    }

    if(flag==0) cout<<"0";
    cout<<endl;
    return 0;
}

 

PAT (Advanced Level) 1038. Recover the Smallest Number (30)

标签:

原文地址:http://www.cnblogs.com/zufezzt/p/5520968.html

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