forked from anandadfoxx/codeforces_solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1220A.cpp
56 lines (50 loc) · 1.05 KB
/
1220A.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
#include <bits/stdc++.h>
using namespace std;
string s;
int e = 0, z = 0, o = 0, r = 0, n = 0;
int checkOne() {
int one = 0;
while ((o > 0) && (n > 0) && (e > 0)) {
one++;
o--;
n--;
e--;
}
return one;
}
int checkZero() {
int zero = 0;
while ((z > 0) && (r > 0) && (e > 0) && (o > 0)) {
zero++;
r--;
o--;
z--;
e--;
}
return zero;
}
int main() {
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int fuk;
cin >> fuk;
cin >> s;
for (int i = 0; i < fuk; i++) {
if (s[i] == 'z') z++;
else if (s[i] == 'e') e++;
else if (s[i] == 'r') r++;
else if (s[i] == 'o') o++;
else if (s[i] == 'n') n++;
}
int ja = checkOne();
int jb = checkZero();
for (int i = 1; i <= ja+jb; i++) {
if (i != ja+jb)
if (i > ja)
printf("0 ");
else printf("1 ");
else
if (i > ja)
printf("0\n");
else printf("1\n");
}
}