文章

166

粉丝

68

获赞

829

访问

50.9k

头像
Problem E 题解:稍微复杂的括号匹配
P1425 西安电子科技大学机试题
发布于2025年3月14日 10:59
阅读数 124

#include <bits/stdc++.h>

using namespace std;

map<char,char> mp={
    {'(',')'},{'[',']'},{'{','}'}
};

int main(){
    int n;
    while(cin>>n){
        while(n--){
            string s;cin>>s;
            stack<char>st;
            bool flag=true;
            for(auto x:s){
                if(x=='['||x=='{'||x=='(')st.push(x);
                else if(x==']'||x=='}'||x==')'){
                    if(st.empty())flag=false;
                    else {
                        char t=st.top();
                        if(mp[t]!=x)flag=false;
                        else st.pop();
                    }
                }else continue;
            }
            if(!st.empty())flag=false;
            if(flag)cout<<"yes"<<endl;
            else cout<<"no"<<endl;
        }
    }
}

无关内容我们忽略,只观察括号即可

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发