题解
2024-02-24 09:59:18
发布于:广东
0阅读
0回复
0点赞
#include <bits/stdc++.h>
#include <stack>
using namespace std;
stack<char>st;
int main()
{
char s;
while(cin>>s){
if(s=='@') break;
else if(s=='(') st.push(s);
else if(s==')'){
if(!st.empty()) st.pop();
else{
cout<<"NO";
return 0;
}
}
}
if(!st.empty()) cout<<"NO";
else cout<<"YES";
return 0;
}
这里空空如也
有帮助,赞一个