할껀하고놀자

[백준] 12904번 A와 B 본문

[IT]/백준

[백준] 12904번 A와 B

working_hard 2019. 6. 8. 22:30
728x90
#include<algorithm>
#include<string>
#include<iostream>
using namespace std;

bool flag;
string S, T;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cin >> S >> T;

	//T로부터 역순으로 진행할 때, S가 되는지 여부 파악
	while (1) {
		if (S.length() == T.length()) {
			if (S == T)
				flag = true;
			break;
		}
		char c = T[T.length() - 1];
		T.pop_back();
		if (c == 'B')
			reverse(T.begin(), T.end());
	}
	cout << flag << endl;

	return 0;
}

'[IT] > 백준' 카테고리의 다른 글

[백준] 14911번 궁합 쌍 찾기  (0) 2019.06.10
[백준] 16235번 나무 재테크  (0) 2019.06.09
[백준] 17176번 암호해독기  (0) 2019.06.08
[백준] 10219번 Meats On The Grill  (0) 2019.06.08
[백준] 2346번 풍선 터뜨리기  (0) 2019.06.08
Comments