2 条题解

  • 0
    @ 2024-8-2 20:15:54
    #include<cstdio>
    #include<iostream>
    #include<string>
    #include<cstring>
    using namespace std;
    string s;
    char sta[6000];
    int main()
    {
    	cin>>s;
    	int top=0;
    	for (int i=0;i<s.size();i++)
    	{
    		sta[++top]=s[i];
    		if (s[i]==')')
    		{
    			if (sta[top-1]=='(')
    				top-=2;			
    		}
    		else
    		{
    			if (s[i]==']')
    				if (sta[top-1]=='[')
    				top-=2;
    		}
    		
    	}
    	if (top!=0)
    		printf("Wrong");
    	else
    		printf("OK");
    	return 0;
    }
    

    信息

    ID
    703
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    递交数
    140
    已通过
    27
    上传者