zoukankan      html  css  js  c++  java
  • Codeforces Round #288 (Div. 2) B. Anton and currency you all know 贪心

    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 <cstdio>
    #include <cmath>
    #include <cstring>
    #include <ctime>
    #include <iostream>
    #include <algorithm>
    #include <set>
    #include <vector>
    #include <sstream>
    #include <queue>
    #include <typeinfo>
    #include <fstream>
    typedef long long ll;
    using namespace std;
    //freopen("D.in","r",stdin);
    //freopen("D.out","w",stdout);
    #define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
    #define maxn 100001
    const int inf=0x7fffffff;   //无限大
    struct node
    {
        int x;
        int y;
    };
    node a[maxn];
    bool cmp(node c,node b)
    {
        return c.x<b.x;
    }
    int main()
    {
        string s;
        cin>>s;
        int flag=0;
        int pos=0;
        int n=s.size();
        int kiss=0;
        for(int i=0;i<n;i++)
        {
            if(s[n-1]>s[i]&&(s[i]-'0')%2==0)
            {
                flag=1;
                swap(s[i],s[n-1]);
                kiss++;
                break;
            }
            if((int)(s[i]-'0')%2==0)
            {
                kiss++;
            }
        }
        if(kiss==0)
            cout<<"-1"<<endl;
        else if(flag==1)
            cout<<s<<endl;
        else
        {
            for(int i=n-1;i>=0;i--)
            {
                if((s[i]-'0')%2==0)
                {
                    swap(s[i],s[n-1]);
                    break;
                }
            }
            cout<<s<<endl;
        }
        return 0;
    }
  • 相关阅读:
    使用poi读写excel文件
    视频云全球创新挑战赛 — 视频目标分割经典算法解析
    阿里云 RTC QoS 弱网对抗之变分辨率编码
    用 WebRTC 打造一个音乐教育 App,要解决哪些音质难题?
    “蚂蚁呀嘿” 刷屏的背后:算法工程师带你理性解构神曲
    白话解读 WebRTC 音频 NetEQ 及优化实践
    未来直播 “神器”,像素级视频分割是如何实现的 | CVPR 冠军技术解读
    「 视频云大赛 — 大咖驾到 」驱动下一代技术浪潮,我们更专注价值落地
    「 视频云大赛 — 大咖驾到 」下一代技术新浪潮,正由视频云驱动
    视频云大赛|视频目标分割,下一个视频算法技术爆发点?
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4256168.html
Copyright © 2011-2022 走看看