[boj] (s4) 9012 괄호
✅ stack
문제
풀이
'('가 나오면 stack에 추가하고 ')'가 나오면 stack에서 '(' 하나를 빼낸다. 이때 stack이 비어있으면 NO이다.
또한 작업을 완료한 뒤 stack에 남아있는게 있으면 NO
코드
#include <iostream>
#include <algorithm>
#include <string>
#include <stack>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int T;
cin >> T;
while(T--){
stack<char> st;
string str;
bool ans = true;
cin >> str;
for (int i = 0; i < str.length(); i++)
{
if (str[i] == '(')
st.push('(');
else
{
if (st.empty())
{
ans = false;
break;
}
else
{
st.pop();
}
}
}
if (!st.empty())
ans = false;
if (ans == true)
cout << "YES"
<< "\n";
else
cout << "NO"
<< "\n";
}
return 0;
}
Author And Source
이 문제에 관하여([boj] (s4) 9012 괄호), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@peanut_/boj-s4-9012-괄호-p2pvo7n5
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
'('가 나오면 stack에 추가하고 ')'가 나오면 stack에서 '(' 하나를 빼낸다. 이때 stack이 비어있으면 NO이다.
또한 작업을 완료한 뒤 stack에 남아있는게 있으면 NO
#include <iostream>
#include <algorithm>
#include <string>
#include <stack>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int T;
cin >> T;
while(T--){
stack<char> st;
string str;
bool ans = true;
cin >> str;
for (int i = 0; i < str.length(); i++)
{
if (str[i] == '(')
st.push('(');
else
{
if (st.empty())
{
ans = false;
break;
}
else
{
st.pop();
}
}
}
if (!st.empty())
ans = false;
if (ans == true)
cout << "YES"
<< "\n";
else
cout << "NO"
<< "\n";
}
return 0;
}
Author And Source
이 문제에 관하여([boj] (s4) 9012 괄호), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@peanut_/boj-s4-9012-괄호-p2pvo7n5저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)