codeforces #508B# Anton and currency you all know(贪心)

来源:互联网 发布:从入门到精通java 编辑:程序博客网 时间:2024/05/29 02:37

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>using namespace std;#define MAXN 100005char num[MAXN];int main(){    int cur = -1;    cin >> num;    int len = strlen(num);    for (int i = 0; i < len -1; i ++)    {        if((num[i] - '0') % 2 == 0)        {            if(num[i] < num[len-1])            {                swap(num[i], num[len-1]);                cout << num << endl;                return 0;            }            cur = i;        }    }    if(cur == -1)        cout << cur << endl;    else{        swap(num[cur], num[len-1]);        cout << num << endl;    }    return 0;}


0 0
原创粉丝点击