Minimum Ternary String

解题思路:先找到第一个2出现之前0的个数并标记第一个二所在位置(0和2不能交换),找到字符串中所有1的个数(1可以和0,2交换),把找到的0和1按先后顺序输出,此时就剩下2和其后面的0了,再从第一个二的位置把2和0按顺序输出,此时就是所求的最小字符串(2越靠后越好)

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 bb have 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<i holds 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

代码:

#include <iostream>
#include<stdio.h>
#include<algorithm>
#include<stdlib.h>
#include<string.h>
using namespace std;
#define maxn 1000000
char s[maxn+50];
int main()
{

    long long int i,j,l,m,n,flag;
    while(gets(s))
    {
        l=strlen(s);
        m=0,n=0;
        flag=1;
        for(i=0;i<l;i++)
        {
            if(flag==1&&s[i]=='0')
                m++;
            else if(s[i]=='1')
                n++;
            else if(flag==1&&s[i]=='2')
            {
                flag=0;
                j=i;
            }
        }
        for(i=0;i<m;i++)
            printf("0");
        for(i=0;i<n;i++)
            printf("1");
        for(i=j;i<l;i++)
            if(s[i]!='1')
                printf("%c",s[i]);
        printf("\n");
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/jk211766/article/details/82917452
今日推荐