Recent Posts
Notice
No Rules Rules
고추장 괄호 문자열 (feat. 백준, 27967번) 본문
728x90
반응형
고추장 괄호 문자열
https://www.acmicpc.net/problem/27967
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
#include <queue>
using namespace std;
int N;
string str;
bool check(){
register int ans = 0;
for(auto& ch : str){
if(ch == '(')
++ans;
else
--ans;
}
if(ans == 0){
cout << str;
exit(0);
}
return false;
}
void dfs(register int position){
if(position == N){
if(!check())
return;
}
if(str.at(position) == 'G'){
str.at(position) = '(';
dfs(position + 1);
str.at(position) = ')';
dfs(position + 1);
}
dfs(position + 1);
}
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
cin >> N >> str;
dfs(0);
return 0;
}
// *&)*@*
반응형
깊이 우선 탐색 (dfs) 를 활용하여 풀이하였습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
고속철도 설계하기 (feat. 백준, 1833번) (0) | 2023.04.25 |
---|---|
아! (feat. 백준, 4999번) (0) | 2023.04.25 |
2진수 8진수 (feat. 백준, 1373번) (0) | 2023.04.21 |
창문 닫기 (feat. 백준, 13909번) (0) | 2023.04.21 |
불우이웃돕기 (feat. 백준, 1414번) (0) | 2023.04.20 |
Comments