-
Notifications
You must be signed in to change notification settings - Fork 0
/
A와B2.cpp
70 lines (55 loc) · 912 Bytes
/
A와B2.cpp
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
#include <iostream>
#include <queue>
#include <algorithm>
#include <unordered_map>
using namespace std;
int ans;
string s, t;
queue<string> q;
unordered_map<string, int> check;
void input()
{
cin >> s >> t;
}
void solution()
{
q.push(t);
while (!q.empty())
{
string cur = q.front();
q.pop();
if (cur.length() < s.length())
break;
if (cur.length() == s.length() && cur == s)
{
ans = 1;
break;
}
string next1 = cur.substr(0, cur.length() - 1);
if (cur.back() == 'A' && !check[next1])
{
q.push(next1);
check[next1] = 1;
}
string next2 = cur.substr(1, cur.length() - 1);
reverse(next2.begin(), next2.end());
if (cur[0] == 'B' && !check[next2])
{
q.push(next2);
check[next2] = 1;
}
}
ans ? cout << 1 : cout << 0;
}
void solve()
{
input();
solution();
}
int main(void)
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
solve();
return 0;
}