Submission #253945

#TimeUsernameProblemLanguageResultExecution timeMemory
253945VEGAnnEsej (COCI15_esej)C++14
80 / 80
31 ms6120 KiB
#include <bits/stdc++.h>
#define PB push_back
using namespace std;
string res;
int a, b;
vector<string> vc;

int main(){
    ios_base::sync_with_stdio(0); cin.tie(0);

#ifdef _LOCAL
    freopen("in.txt","r",stdin);
#endif // _LOCAL

    cin >> a >> b;

    for (int po = 1; po <= 15; po++){
        for (int i = 0; i < (1 << po); i++){
            res = "";
            for (int j = 0; j < po; j++)
                if (i & (1 << j))
                    res += "a";
                else res += "b";
            vc.PB(res);
        }
    }

    for (int po = 1; po <= 15; po++){
        for (int i = 0; i < (1 << po); i++){
            res = "";
            for (int j = 0; j < po; j++)
                if (i & (1 << j))
                    res += "c";
                else res += "d";
            vc.PB(res);
        }
    }

    for (int it = 0; it < b; it++)
        cout << vc[it] << " ";

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...