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

XDOJ_1124_贪心

时间:2016-11-06 07:38:51      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:printf   swap   cstring   string   include   using   strlen   str   space   

http://acm.xidian.edu.cn/problem.php?id=1124

 

找第一个不是当前到最后的最大值的元素,和这后面的最大的元素交换。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

char a[1005];

int main()
{
    while(~scanf("%s",a))
    {
        int len = strlen(a),first = 0,last = 0,now = 0;
        while(now < len)
        {
            for(int i = now+1;i < len;i++)
            {
                first = last = now;
                char maxx = a[now];
                if(a[i] > maxx)
                {
                    maxx = a[i];
                    last = i;
                }
            }
            if(first != last)   break;
            for(now++;a[now] == a[now-1];now++);
        }
        swap(a[first],a[last]);
        printf("%s\n",a);
    }
    return 0;
}

 

XDOJ_1124_贪心

标签:printf   swap   cstring   string   include   using   strlen   str   space   

原文地址:http://www.cnblogs.com/zhurb/p/6034616.html

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