1일1알

백준 12919번 A와 B 2 C++ 본문

알고리즘

백준 12919번 A와 B 2 C++

영춘권의달인 2022. 11. 13. 12:15

https://www.acmicpc.net/problem/12919

 

12919번: A와 B 2

수빈이는 A와 B로만 이루어진 영어 단어 존재한다는 사실에 놀랐다. 대표적인 예로 AB (Abdominal의 약자), BAA (양의 울음 소리), AA (용암의 종류), ABBA (스웨덴 팝 그룹)이 있다. 이런 사실에 놀란 수빈

www.acmicpc.net

 

s에서 t로 한단계씩 바꾸는 것은 시간초과가 날 수 있기 때문에 거꾸로 t에서 s로 조건에 맞을때만 바꾸는 식으로 풀었다.

 

#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>

using namespace std;
using int64 = long long;

int ans = 0;

void Rec(string s, string t) {
    if (s.length() > t.length()) return;
    if (s == t) {
        ans = 1;
        return;
    }
    if (t.back() == 'A') {
        string tmp = t.substr(0, t.length() - 1);
        Rec(s, tmp);
    }
    if (*t.begin() == 'B') {
        string tmp = t;
        reverse(tmp.begin(), tmp.end());
        tmp = tmp.substr(0, tmp.length() - 1);
        Rec(s, tmp);
    }
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    string s, t;
    cin >> s >> t;
    Rec(s, t);
    cout << ans;
}

'알고리즘' 카테고리의 다른 글

백준 15565번 귀여운 라이언 C++  (0) 2022.11.15
백준 15591번 MooTube (Silver) C++  (0) 2022.11.14
백준 13164번 행복 유치원 C++  (0) 2022.11.12
백준 1956번 운동 C++  (0) 2022.11.11
백준 14241번 슬라임 합치기 C++  (0) 2022.11.09