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
- 자료구조
- Unreal Engine 5
- c++
- 유니티
- 수학
- BFS
- 우선순위 큐
- 백트래킹
- 누적 합
- 문자열
- 스택
- Team Fortress 2
- 알고리즘
- 그래프
- XR Interaction Toolkit
- 다익스트라
- 백준
- 브루트포스
- 투 포인터
- 그리디 알고리즘
- DFS
- 정렬
- 다이나믹 프로그래밍
- 시뮬레이션
- 트리
- ue5
- 구현
- 재귀
- 유니온 파인드
- VR
Archives
- Today
- Total
1일1알
백준 12904번 A와 B C++ 본문
처음에는 S에서 백트래킹을 해서 T로 가는 방법을 생각해봤는데 범위를 보니 무조건 시간초과가 날 것 같아서 다른 방법을 생각해 보았다.
T에서 S로 거꾸로 거슬러 올라가는 방법으로 문제를 해결하였다.
T의 맨 뒤가 A라면 그냥 A를 빼고
T의 맨 뒤가 B라면 B를 빼고 문자열을 뒤집어준다.
이걸 반복하다가 S와 길이가 같아졌을 때 S와 T가 일치하면 S로 T를 만들 수 있는 것이고, 일치하지 않는다면 만들 수 없는 것이다.
#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 <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string s, t;
cin >> s >> t;
int ans = 0;
while (true) {
if (s.length() == t.length()) {
if (s == t) {
ans = 1;
}
break;
}
char c = t[t.length() - 1];
t = t.substr(0, t.length() - 1);
if (c == 'B') {
reverse(t.begin(), t.end());
}
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 2174번 로봇 시뮬레이션 C++ (0) | 2022.03.20 |
---|---|
백준 2688번 줄어들지 않아 C++ (0) | 2022.03.19 |
백준 1405번 미친 로봇 C++ (0) | 2022.03.17 |
백준 6593번 상범 빌딩 C++ (0) | 2022.03.16 |
백준 9084번 동전 C++ (0) | 2022.03.15 |