题解
2023-08-16 13:52:08
发布于:浙江
2阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
char a[256];
bool yn(char a[256]){
int top=0;
int i=0;
while(a[i]!='@'){
if(a[i]=='('){
top++;
}
if(a[i]==')'){
if(top>0)top--;
else return 0;
}
i++;
}
if(top==1)return 0;
else return 1;
}
int main(){
scanf("%s",a);
if(yn(a)==1){
cout <<"YES";
}else{
cout<<"NO";
}
return 0;
}
这里空空如也
有帮助,赞一个