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
- 그리디 알고리즘
- Team Fortress 2
- 자료구조
- 스택
- 누적 합
- 알고리즘
- 유니티
- 수학
- 백준
- Unreal Engine 5
- 브루트포스
- 재귀
- XR Interaction Toolkit
- DFS
- 구현
- 정렬
- 투 포인터
- c++
- ue5
- 트리
- 문자열
- 백트래킹
- VR
- 우선순위 큐
- 시뮬레이션
- 다이나믹 프로그래밍
- 유니온 파인드
- 그래프
- 다익스트라
- BFS
Archives
- Today
- Total
1일1알
백준 9935번 문자열 폭발 C++ 본문
1. 문자열을 처음부터 순회하면서 스택에 하나씩 넣는다.
2. 폭발 문자열의 마지막 문자와 지금 순회중인 문자가 같다면 스택에서 폭발 문자열의 크기만큼 뺀다.
3. 뺀 문자열과 폭발 문자열을 비교하여 같다면 그대로 지나가고 같지 않다면 뺀 문자열을 다시 스택에 넣는다.
4. 순회가 끝났으면 스택에서 문자를 전부 빼서 역순으로 출력한다.
#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 str, target;
cin >> str >> target;
stack<char> st;
char targetChar = target[target.length() - 1];
for (int i = 0; i < str.length(); i++) {
st.push(str[i]);
if (str[i] == targetChar) {
if (st.size() >= target.length()) {
string tmp = "";
for (int j = 0; j < target.length(); j++) {
tmp += st.top();
st.pop();
}
reverse(tmp.begin(), tmp.end());
if (tmp != target) {
for (int j = 0; j < tmp.length(); j++) {
st.push(tmp[j]);
}
}
}
}
}
string ans = "";
while (!st.empty()) {
ans += st.top();
st.pop();
}
reverse(ans.begin(), ans.end());
if (ans == "") {
cout << "FRULA";
}
else {
cout << ans;
}
};
'알고리즘' 카테고리의 다른 글
백준 15663번 N과 M (9) C++ (0) | 2022.04.01 |
---|---|
백준 2096번 내려가기 C++ (0) | 2022.03.31 |
백준 2448번 별 찍기 - 11 C++ (0) | 2022.03.27 |
백준 4963번 섬의 개수 C++ (0) | 2022.03.26 |
백준 1120번 문자열 C++ (0) | 2022.03.24 |