括号树
题解
作为CSP2019一年三树中的一棵,算是比较简单的了。很明显,从根到叶节点的路径上,只有在当前节点为")"时才会产生新的合法括号串,而且与其构成合法括号串的只有与它同层的合法括号串。我们可以用一个栈将其存储下来,在每一个节点上进行修改即可。
源码
#include<cstdio>
#include<cmath>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<stack>
#define MAXN 500005
using namespace std;
typedef long long LL;
int n;
char maze[MAXN];
LL to[MAXN],nxt[MAXN];
LL head[MAXN],tot;
LL ans;
template<typename _T>
void read(_T &x)
{
_T f=1;x=0;char s=getchar();
while(s>'9'||s<'0'){if(s=='-') f=-1;s=getchar();}
while(s>='0'&&s<='9'){x=(x<<3)+(x<<1)+(s^48);s=getchar();}
x*=f;
}
void addEdge(LL u,LL v)
{
to[++tot]=v;
nxt[tot]=head[u]