codeforces B. Minimum Ternary String 【贪心】

You are given a ternary string (it is a string which consists only of characters '0', '1' and '2').

You can swap any two adjacent (consecutive) characters '0' and '1' (i.e. replace "01" with "10" or vice versa) or any two adjacent (consecutive) characters '1' and '2' (i.e. replace "12" with "21" or vice versa).

For example, for string "010210" we can perform the following moves:

  • "010210" →→ "100210";
  • "010210" →→ "001210";
  • "010210" →→ "010120";
  • "010210" →→ "010201".

Note than you cannot swap "02" →→ "20" and vice versa. You cannot perform any other operations with the given string excluding described above.

You task is to obtain the minimum possible (lexicographically) string by using these swaps arbitrary number of times (possibly, zero).

String aa is lexicographically less than string bb (if strings aa and bbhave the same length) if there exists some position ii (1≤i≤|a|1≤i≤|a|, where |s||s| is the length of the string ss) such that for every j<ij<iholds aj=bjaj=bj, and ai<biai<bi.

Input

The first line of the input contains the string ss consisting only of characters '0', '1' and '2', its length is between 11 and 105105(inclusive).

Output

Print a single string — the minimum possible (lexicographically) string you can obtain by using the swaps described above arbitrary number of times (possibly, zero).

Examples

Input

100210

Output

001120

Input

11222121

Output

11112222

Input

20

Output

20
题意:输出字典序最小的字符串,变形规则如下:相邻两个数交换,2和0或则0和2相邻时不能交换

思路:(1)若不存在0或者2sort后 直接输出

           (2)遇见0直接输出,遇见1跳过,遇见2输出全部的1再输出2

代码:

看完题解后:AC代码 惭愧啊

#include<bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    cin>>s;
    int ans0=0,ans1=0,ans2=0;
    for(int i=0;i<s.length();i++)
    {
        if(s[i]=='0') ans0++;
        if(s[i]=='1') ans1++;
        if(s[i]=='2') ans2++;
    }
    if(ans0==0||ans2==0)
    {
        sort(s.begin(),s.end());
        cout<<s<<endl;
        return 0;
    }
    for(int i=0;i<s.length();i++)
    {
        if(s[i]=='0') cout<<0;
        else
        if(s[i]=='2'&&ans1)
        {
            while(ans1)
            {
                cout<<1;
                ans1--;
            }
            cout<<2;
        }
        else
        {
            if(s[i]=='1') continue;///前面已经将1全部输出,遇到1就忽略
            if(s[i]=='2') cout<<2;
        }

    }
    return 0;

}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

不会敲代码的小帅

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值