#include <bits/stdc++.h> #define endl '\n' #define LL long long #define fi first #define sc second using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int N; cin >> N; // 5z3j, 4z4j, 3z5j, 2z6j int dL = 0; // + 1 , = 0 , - 1 , - 2 string a; cin >> a; for(int i = 0; i < 8*N; i++){ if(a[i] == '1') dL++; else dL--; } //cout << dL << endl; string Result = ""; while(N > 0){ if(dL == 0) Result += 'c'; else if(dL < 0){ Result += 'a'; dL+=2; } else if(dL == 2){ Result += 'g'; dL -= 2; } else{ Result += 'w'; dL -= 4; } N -= 1; } if(dL != 0){ cout << "NIE" << endl; } else{ cout << Result << endl; } 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 | #include <bits/stdc++.h> #define endl '\n' #define LL long long #define fi first #define sc second using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int N; cin >> N; // 5z3j, 4z4j, 3z5j, 2z6j int dL = 0; // + 1 , = 0 , - 1 , - 2 string a; cin >> a; for(int i = 0; i < 8*N; i++){ if(a[i] == '1') dL++; else dL--; } //cout << dL << endl; string Result = ""; while(N > 0){ if(dL == 0) Result += 'c'; else if(dL < 0){ Result += 'a'; dL+=2; } else if(dL == 2){ Result += 'g'; dL -= 2; } else{ Result += 'w'; dL -= 4; } N -= 1; } if(dL != 0){ cout << "NIE" << endl; } else{ cout << Result << endl; } return 0; } |