-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathDSA01009 - XÂU AB ĐẶC BIỆT
85 lines (85 loc) · 2.68 KB
/
DSA01009 - XÂU AB ĐẶC BIỆT
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include <bits/stdc++.h>
#define endl "\n"
using namespace std;
bool check(string s, int n)
{
s = 'B' + s + 'B';
for (int i = 0; i < s.size() - n - 1; i++)
{
if (s[i] == 'B' && s[i + n + 1] == 'B')
{
int d = 0;
for (int j = i + 1; j <= i + n; j++)
{
if (s[j] == 'A')
d++;
}
if (d == n)
return 1;
}
}
return 0;
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int n, k;
cin >> n >> k;
string a;
queue<string> q;
for (int i = 0; i < n; i++)
a += 'A';
while (1)
{
if (check(a, k))
q.push(a);
int ok = 0;
for (int i = n - 1; i >= 0; i--)
{
if (a[i] == 'A')
{
ok = 1;
a[i] = 'B';
for (int j = i + 1; j < n; j++)
a[j] = 'A';
break;
}
}
if (ok == 0)
break;
}
cout << q.size() << endl;
while (q.size())
{
cout << q.front() << endl;
q.pop();
}
}
/* Do Xuan Huong
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@##################@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@#############################@@@@@@@@@@@@@@@@
@@@@@@@@@@@@&####################################@@@@@@@@@@@@
@@@@@@@@@@##########################################@@@@@@@@@
@@@@@@@@##############################################@@@@@@@
@@@@@@#################################################@@@@@@
@@@@@####################################################@@@@
@@@%#####################@@@@@@@@@@@######################@@@
@@@###################@@@@@@@@@@@@@@@@@####################@@
@@##################@@@@@@ @@@@@@##################@@
@@#################@@@@@ @@@@###################@
@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@
@ &@@@@ @@@@ .......@@
@@ @@@@@@ @@@@@@ .......@@
@@ @@@@@@@@@@@@@@@@@ .......@@@
@@@ @@@@@@@@@@@ ......@@@@
@@@@ ......@@@@@
@@@@@@ ......@@@@@@
@@@@@@@ .....@@@@@@@@
@@@@@@@@@ .....@@@@@@@@@@
@@@@@@@@@@@@ ....@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@ ....@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@% .@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
*/