zoukankan      html  css  js  c++  java
  • [BZOJ3926][ZJOI2015]诸神眷顾的幻想乡

    bzoj
    luogu

    题意

    有一棵树,每个节点上有一个字符,一条路径上的字符连起来就是一个字符串。求树上一共有多少个不同的字符串。
    (nle10^5),字符集大小(cle10),只与一个空地相邻的空地数量不超过20个。

    sol

    最后一句话是这道题的关键。
    什么叫做“只与一个空地相邻的空地数量不超过20个”?
    叶子节点数量不超过20个!
    我们只要从每个叶子节点出发dfs整棵树,就可以得到所有的子串了。
    所以当然是一边dfs一遍extend,注意广义后缀自动机,要保存当前节点的前一个点(last)的值。每次extend前要务必保证这点。
    不同的子串个数?(sum_{i=1}^{tot}len[i]-len[fa[i]])

    code

    #include<cstdio>
    #include<algorithm>
    #include<cstring>
    using namespace std;
    int gi()
    {
    	int x=0,w=1;char ch=getchar();
    	while ((ch<'0'||ch>'9')&&ch!='-') ch=getchar();
    	if (ch=='-') w=0,ch=getchar();
    	while (ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+ch-'0',ch=getchar();
    	return w?x:-x;
    }
    const int N = 4e6+5;
    int n,col[N],to[N],nxt[N],head[N],cnt,d[N],tr[N][10],fa[N],len[N],last=1,tot=1;
    void link(int u,int v){to[++cnt]=v;nxt[cnt]=head[u];head[u]=cnt;}
    void extend(int c)
    {
    	int v=last,u=++tot;last=u;
    	len[u]=len[v]+1;
    	while (v&&!tr[v][c]) tr[v][c]=u,v=fa[v];
    	if (!v) fa[u]=1;
    	else{
    		int x=tr[v][c];
    		if (len[x]==len[v]+1) fa[u]=x;
    		else{
    			int y=++tot;
    			memcpy(tr[y],tr[x],sizeof(tr[y]));
    			fa[y]=fa[x];fa[x]=fa[u]=y;len[y]=len[v]+1;
    			while (v&&tr[v][c]==x) tr[v][c]=y,v=fa[v];
    		}
    	}
    }
    void dfs(int u,int f)
    {
    	extend(col[u]);int tmp=last;
    	for (int e=head[u];e;e=nxt[e])
    		if (to[e]!=f)
    			last=tmp,dfs(to[e],u);
    }
    int main()
    {
    	n=gi();gi();long long ans=0;
    	for (int i=1;i<=n;++i) col[i]=gi();
    	for (int i=1;i<n;++i)
    	{
    		int u=gi(),v=gi();
    		link(u,v);link(v,u);++d[u];++d[v];
    	}
    	for (int i=1;i<=n;++i) if (d[i]==1) last=1,dfs(i,0);
    	for (int i=1;i<=tot;++i) ans+=len[i]-len[fa[i]];
    	printf("%lld
    ",ans);return 0;
    }
    
  • 相关阅读:
    C# 图像处理(图像缩放、屏幕截取、图像合并、保存图像)
    C# string ASCII相互转换
    BitNami Redmine Stack迁移
    win10开始菜单打不开怎么办?
    (.text+0x18): undefined reference to `main'
    CUDA 计算pi (π)
    C++ 对TXT 的串并行读写
    Matlab 与 c++对txt 文档的读写格式
    Git 初级使用 windows & Ubuntu
    Leetcode 题解 Remove Duplicates from Sorted List
  • 原文地址:https://www.cnblogs.com/zhoushuyu/p/8660566.html
Copyright © 2011-2022 走看看