Algorithm


C. Smallest Word
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

IA has so many colorful magnets on her fridge! Exactly one letter is written on each magnet, 'a' or 'b'. She loves to play with them, placing all magnets in a row. However, the girl is quickly bored and usually thinks how to make her entertainment more interesting.

Today, when IA looked at the fridge, she noticed that the word formed by magnets is really messy. "It would look much better when I'll swap some of them!" — thought the girl — "but how to do it?". After a while, she got an idea. IA will look at all prefixes with lengths from 11 to the length of the word and for each prefix she will either reverse this prefix or leave it as it is. She will consider the prefixes in the fixed order: from the shortest to the largest. She wants to get the lexicographically smallest possible word after she considers all prefixes. Can you help her, telling which prefixes should be chosen for reversing?

A string a is lexicographically smaller than a string b if and only if one of the following holds:

  • a is a prefix of b, but ab�≠�;
  • in the first position where a and b differ, the string a has a letter that appears earlier in the alphabet than the corresponding letter in b.
Input

The first and the only line contains a string s (1|s|10001≤|�|≤1000), describing the initial string formed by magnets. The string s consists only of characters 'a' and 'b'.

Output

Output exactly |s||�| integers. If IA should reverse the i-th prefix (that is, the substring from 11 to i), the i-th integer should be equal to 11, and it should be equal to 00 otherwise.

If there are multiple possible sequences leading to the optimal answer, print any of them.

Examples
input
Copy
bbab
output
Copy
0 1 1 0
input
Copy
aaaaa
output
Copy
1 0 0 0 1
Note

In the first example, IA can reverse the second and the third prefix and get a string "abbb". She cannot get better result, since it is also lexicographically smallest string obtainable by permuting characters of the initial string.

In the second example, she can reverse any subset of prefixes — all letters are 'a'.

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <bits/stdc++.h>

using namespace std;

string s, tmp;
vector<int> sol;

int main() {
  cin >> s;

  for(int i = 0; i < s.length(); ++i) {
    if(i + 1 < s.length() && s[i] == 'b' && s[i + 1] == 'a') {
      reverse(s.begin(), s.begin() + i);
      sol.push_back(i);
      continue;
    }

    if(i + 1 < s.length() && s[i] == 'a' && s[i + 1] == 'b' ||
      i == s.length() - 1 && s[i] == 'a') {
      reverse(s.begin(), s.begin() + i);
      sol.push_back(i);
    }
  }

  for(int i = 0; i < s.length(); ++i) {
    if(binary_search(sol.begin(), sol.end(), i))
      printf("1 ");
    else
      printf("0 ");
  }
  puts("");

  return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
bbab

Output

x
+
cmd
0 1 1 0
Advertisements

Demonstration


Codeforces Solution-C. Smallest Word-Solution in C, C++, Java, Python,Smallest Word,Codeforces Solution

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+