文章
60
粉丝
361
获赞
43
访问
524.7k
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
while(cin>>s)
{
stack<char>st;
for(int i=0;i<s.size();i++)
{
if(!st.empty())
{
if(st.top()=='('&&s[i]==')'||st.top()=='['&&s[i]==']')
st.pop();
else
st.push(s[i]);
}
else
st.push(s[i]);
}
if(!st.empty())
cout<<"NO"<<endl;
else
cout<<"YES"<<endl;
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发