STL stack을 통해 문제를 풀었다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
while (true)
{
stack<char>s;
string str;
getline(cin, str);
if (str[0] == '.')
break;
for (int i = 0; str[i] != '\0'; ++i)
{
if (str[i] == '(')
s.push(str[i]);
if (str[i] == '[')
s.push(str[i]);
if (str[i] == ')')
{
if (!s.empty() && s.top() == '(')
s.pop();
else
s.push(str[i]);
}
if (str[i] == ']')
{
if (!s.empty() && s.top() == '[')
s.pop();
else
s.push(str[i]);
}
}
if (s.empty())
cout << "yes" << '\n';
else
cout << "no" << '\n';
}
}