2 条题解

  • 1
    @ 2025-11-16 15:35:08
    #include<bits/stdc++.h>
    using namespace std;
    stack<char> a;
    char ch;
    int main(){
        ios::sync_with_stdio(0);cin.tie(nullptr);cout.tie(nullptr);
        while(ch!='@'){
            cin>>ch;
            if(ch=='('){
                a.push(ch);
            }
            if(ch==')'){
                if(!a.size()){
                    cout<<"NO";
                    return 0;
                }
                a.pop();
            }
        }
        if(!a.size()){
            cout<<"YES";
        }
        else{
            cout<<"NO";
        }
        return 0;
    }
    
    
    
    • 0
      @ 2025-10-26 9:51:29
      #include<bits/stdc++.h>
      using namespace std;
      int top=0;
      char n;
      int main(){
          while(cin>>n){
          	if(n=='@'){
                  if(top==0)
                      cout<<"YES";
                  else
                      cout<<"NO";
              }
          	if(n=='(')
          		top++;
          	if(n==')')
          		top--;
          	if(top<0){
          		cout<<"NO";
          		return 0;
      		}
      	}
      }
      
      • 1

      信息

      ID
      5797
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      递交数
      87
      已通过
      35
      上传者