#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 5; int ile[N]; int jeden; void rozloz(int n){ int poz = 1; while(poz <= n && jeden > 0){ ile[poz]++; jeden--; poz++; } } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; string s; cin >> s; for(int i = 0; i < n * 8; i++) if(s[i] == '1') jeden++; if(jeden < 3 * n || 6 * n < jeden){ cout << "NIE\n"; return 0; } while(jeden != 0) rozloz(n); for(int i = 1; i <= n; i++){ if(ile[i] == 3) cout << "a"; else if(ile[i] == 4) cout << "c"; else if(ile[i] == 5) cout << "g"; else cout << "o"; } cout << "\n"; }
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 | #include <bits/stdc++.h> using namespace std; const int N = 1e5 + 5; int ile[N]; int jeden; void rozloz(int n){ int poz = 1; while(poz <= n && jeden > 0){ ile[poz]++; jeden--; poz++; } } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; string s; cin >> s; for(int i = 0; i < n * 8; i++) if(s[i] == '1') jeden++; if(jeden < 3 * n || 6 * n < jeden){ cout << "NIE\n"; return 0; } while(jeden != 0) rozloz(n); for(int i = 1; i <= n; i++){ if(ile[i] == 3) cout << "a"; else if(ile[i] == 4) cout << "c"; else if(ile[i] == 5) cout << "g"; else cout << "o"; } cout << "\n"; } |