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
#include <bits/stdc++.h>
using namespace std;




int main() {
    std::ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int n;
    int tmp;
    cin >> n;
    int num1 = 0;
    int num0 = 0;
    for(int i = 0; i < 8 * n; i++){
        tmp = getchar();
        if(tmp == '1'){
            num1++;
        } else{
            num0++;
        }
    }
//    cout << num1 << " " << num0 << endl;
    int target = num1 - 3 * n;
    if (target < 0){
        cout << "NIE";
        return 0;
    }
    for(int a2 = 0; a2 <= target; a2++) {
        for (int a3 = 0; 2 * a3 <= target; a3++) {
            for (int a4 = 0; 3 * a4 <= target; a4++) {
                int a1 = n - a2 - a3 - a4;
                if(a2 + 2 * a3 + 3 * a4 == target && a1 >= 0){
                    for(int i = 0; i < a1; i++){
                        cout << "a";
                    }
                    for(int i = 0; i < a2; i++){
                        cout << "c";
                    }
                    for(int i = 0; i < a3; i++){
                        cout << "g";
                    }
                    for(int i = 0; i < a4; i++){
                        cout << "o";
                    }
                    return 0;
                }
            }
        }
    }
    cout << "NIE";
    return 0;
}