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

B. Anton and currency you all know

时间:2015-01-28 14:40:00      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:b. anton and currenc

B. Anton and currency you all know
time limit per test
0.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Berland, 2016. The exchange rate of currency you all know against the burle has increased so much that to simplify the calculations, its fractional part was neglected and the exchange rate is now assumed to be an integer.

Reliable sources have informed the financier Anton of some information about the exchange rate of currency you all know against the burle for tomorrow. Now Anton knows that tomorrow the exchange rate will be an even number, which can be obtained from the present rate by swapping exactly two distinct digits in it. Of all the possible values that meet these conditions, the exchange rate for tomorrow will be the maximum possible. It is guaranteed that today the exchange rate is an odd positive integer n. Help Anton to determine the exchange rate of currency you all know for tomorrow!

Input

The first line contains an odd positive integer n — the exchange rate of currency you all know for today. The length of number n‘s representation is within range from 2 to 105, inclusive. The representation of n doesn‘t contain any leading zeroes.

Output

If the information about tomorrow‘s exchange rate is inconsistent, that is, there is no integer that meets the condition, print ?-?1.

Otherwise, print the exchange rate of currency you all know against the burle for tomorrow. This should be the maximum possible number of those that are even and that are obtained from today‘s exchange rate by swapping exactly two digits. Exchange rate representation should not contain leading zeroes.

Sample test(s)
input
527
output
572
input
4573
output
3574
input
1357997531
output
-1

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
#define maxn 100005
char a[maxn];
int main()
{
    int i,j;
   // freopen("in.txt","r",stdin);
    while(scanf("%s",&a)!=EOF){
        i=0;
        j=strlen(a)-1;
        int flag=0;
        int flag1=0;
        while(i<=j){
            if(a[j]>a[i]&&(a[i]-'0')%2==0){     //从前往后找第一个比最后一个小的数,交换,可以这样想像,前面的都比最后一个小,肯定和第一个数换能够得到最大值
               swap(a[i],a[j]);
               flag=1;
               break;
            }
            i++;
        }
        if(flag==0){
            j=strlen(a)-1;
            while(j>=0){
                if(a[j]>a[strlen(a)-1]&&(a[j]-'0')%2==0){  //从后往前找第一个比最后一个小的数,交换,这样想,如果前面的都比最后一个大,要交换的那个数肯定越后越好。
                    swap(a[j],a[strlen(a)-1]);
                    flag1=1;
                    break;
                }
                j--;
            }
        }
        if(flag1==1||flag==1)puts(a);
        else puts("-1");

    }

}


B. Anton and currency you all know

标签:b. anton and currenc

原文地址:http://blog.csdn.net/u013497977/article/details/43229741

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