forked from VivekDubey9/Competitive-Programming-Algos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codesforces1009B.cpp
65 lines (64 loc) · 1.19 KB
/
codesforces1009B.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
cin >> s;
bool found = true;
int two = -1;
for (int i = 0; i < s.size(); i++) {
if (s[i] == '2') {
two = i;
break;
}
}
string ans = "";
if (two != -1) {
int zeros = 0, onesbefore = 0;
for (int i = 0; i < two; i++) {
if (s[i] == '0') {
zeros++;
} else {
onesbefore++;
}
}
while (zeros--) {
ans += string(1, '0');
}
while (onesbefore--) {
ans += string(1, '1');
}
int onesafter = 0;
for (int i = 0; i < s.size(); i++) {
if (i > two and s[i] == '1') {
onesafter++;
}
}
while (onesafter--) {
ans += string(1, '1');
}
ans += string(1, '2');
for (int i = two + 1; i < s.size(); i++) {
if (s[i] != '1') {
ans += string(1, s[i]);
}
}
} else {
ans = "";
int zeros = 0, ones = 0;
for (int i = 0; i < s.size(); i++) {
if (s[i] == '0') {
zeros++;
} else {
ones++;
}
}
while (zeros--) {
ans += string(1, '0');
}
while (ones--) {
ans += string(1, '1');
}
}
cout << ans << endl;
return 0;
}