#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef pair<ll, int> PILL;
typedef pair<ll, ll> PLL;
const int MAX_N = 1e6+5;
const int M = 3e4+5;
const ll INF = (ll)(1e18);
const int inf = 1e9;
const ll MOD = 1000000007LL;
// a: 3 ones
// c: 4 ones
// g: 5 ones
// w: 6 ones
int n;
string s;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> s;
int ones = 0;
for (int i = 0; i < 8 * n; i++) {
if (s[i] == '1') ones++;
}
if (ones < 3*n || ones > 6*n) {
cout << "NIE\n";
return 0;
}
string ans = "";
ones -= 3*n;
for (int i = 0; i < n; i++) {
ans += 'a';
}
for (int i = 0; i < n; i++) {
if (ones <= 0) break;
if (ones >= 3) {
ones -= 3;
ans[i] = 'w';
continue;
}
if (ones == 2) {
ans[i] = 'g';
break;
}
if (ones == 1) {
ans[i] = 'c';
break;
}
}
cout << ans << '\n';
return 0;
}
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 66 67 68 69 70 | #include <bits/stdc++.h> using namespace std; typedef unsigned long long ull; typedef long long ll; typedef long double ld; typedef pair<int, int> PII; typedef pair<ll, int> PILL; typedef pair<ll, ll> PLL; const int MAX_N = 1e6+5; const int M = 3e4+5; const ll INF = (ll)(1e18); const int inf = 1e9; const ll MOD = 1000000007LL; // a: 3 ones // c: 4 ones // g: 5 ones // w: 6 ones int n; string s; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n >> s; int ones = 0; for (int i = 0; i < 8 * n; i++) { if (s[i] == '1') ones++; } if (ones < 3*n || ones > 6*n) { cout << "NIE\n"; return 0; } string ans = ""; ones -= 3*n; for (int i = 0; i < n; i++) { ans += 'a'; } for (int i = 0; i < n; i++) { if (ones <= 0) break; if (ones >= 3) { ones -= 3; ans[i] = 'w'; continue; } if (ones == 2) { ans[i] = 'g'; break; } if (ones == 1) { ans[i] = 'c'; break; } } cout << ans << '\n'; return 0; } |
English