在大神的指点下AC了,起初用了编译原理的下推自动机,没AC掉,看来是自己把题目想复杂了……
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <vector>
#include <cmath>
#include <iostream>
#include <algorithm>
#include <functional>
#include <string>
#include <map>
#include <cctype>
using namespace std;
char ex[110];
int index;
bool A();
bool B();
bool C();
bool A()
{
if(ex[index]=='x')
{
index++;
while(ex[index]==' ') index++;
return true;
}
if(ex[index]=='(')
{
index++;
while(ex[index]==' ') index++;
if(B()&&ex[index]==')')
{
index++;
while(ex[inde