Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 브루트포스
- c++
- 그래프
- 수학
- Team Fortress 2
- 백트래킹
- 백준
- 투 포인터
- VR
- 정렬
- 다익스트라
- 그리디 알고리즘
- BFS
- DFS
- 유니온 파인드
- 누적 합
- Unreal Engine 5
- 문자열
- 다이나믹 프로그래밍
- XR Interaction Toolkit
- 재귀
- 알고리즘
- 스택
- 우선순위 큐
- 자료구조
- ue5
- 트리
- 유니티
- 시뮬레이션
- 구현
Archives
- Today
- Total
1일1알
백준 12919번 A와 B 2 C++ 본문
https://www.acmicpc.net/problem/12919
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 |