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

HDU 1106 排序

时间:2014-09-11 22:27:12      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:模拟

水题,注意细节。(懒癌……课又很无聊,等这个双休到了一起刷题吧。一个人坚持实在很累)


对着电脑发了一下午的呆,游戏也不想玩,题也不想刷,也许是累了。最后觉得不能这样荒废,即使不想写什么难题,也要刷刷水题!


如:

0051231232050775

0 77 12312320


005123123205077

0 77 12312320


50051231232050775

0 77 12312320


55512345

12345

#include<cstdio>
#include<cstring>
#include<string>
#include<queue>
#include<algorithm>
#include<map>
#include<stack>
#include<iostream>
#include<list>
#include<set>
#include<cmath>

#define INF 0x7fffffff
#define eps 1e-8
#define LL long long
#define PI 3.141592654
#define CLR(a,b) memset(a,b,sizeof(a))
#define FOR(n) for(int i=0;i<n;i++)
#define debug puts("==fuck==")
#define acfun std::ios::sync_with_stdio(false)

using namespace std;
int main()
{
    char str[1001];
    int a[1001];
    while(gets(str)!=NULL)
    {
        int len=strlen(str);
        int n=0,j=0;
        char tmp[1001];
        FOR(len+1)
        {
            if(str[i]=='5'||str[i]=='\0')
            {
                if(j==0)continue;
                tmp[j]='\0';
                a[n++]=atoi(tmp);
                j=0;
            }
            else
                tmp[j++]=str[i];
        }
        sort(a,a+n);
        FOR(n-1)
        printf("%d ",a[i]);
        printf("%d\n",a[n-1]);
    }
}


HDU 1106 排序

标签:模拟

原文地址:http://blog.csdn.net/dongshimou/article/details/39211787

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