技术笔记:SCU4484

简介: 技术笔记:SCU4484

The Graver Robbers' Chronicles


Description


One day, Kylin Zhang and Wu Xie are trapped in a graveyard. They find an ancient piece of parchment with a cipher string.


After discussion and analysis, they find the password is the total number of the cipher string's distinct substrings.


Although Kylin Zhang is powerful and always help his friends get rid of danger, this time he is helpless beacause


he is not good at math and programming.


As a smart Acmer, can you help them solve this problem so that they can escape from this horrible graveyard.


Input


The first line is an integer T stands for the number of test cases.


Then T test case follow.


For each test case there is one string.


Constraints:


T is no bigger than 30.


The length of string is no bigger than 50000.


Every string only contains lowercase letters.


Output


For each test case, output the answer in a single line. one number saying the number of distinct substrings.


Sample Input


2


aaaaa


cacac


Sample Output


5


9


Hint


For test case 2, the distinct substrings of 'cacac' are as follows:


len = 1 : c , a


len = 2 : ca , ac


len = 3 : cac , aca


len = 4 : caca , acac


len = 5 : cacac


Thus, total number of distinct substrings is 9.


分析:字符串的处理问题,查重的时候使用后缀数组就可以了。


算出总的子串 len(len+1)/2


再减去重复的 Height(i)


即可


套用了一下 大大的后缀数组模板,地址:


代码如下:


#include


#include


#include


#define LL long long


#define ULL unsigned long long


using namespace std;


const int MAXN=100010;


//以下为倍增算法求后缀数组


int wa【MAXN】,wb【MAXN】,wv【MAXN】,Ws【MAXN】;


int cmp(int //代码效果参考:http://www.lyjsj.net.cn/wz/art_23208.html

r,int a,int b,int l)

{return r【a】==r【b】&&r【a+l】==r【b+l】;}


/< 传入参数:str,sa,len+1,ASCII_MAX+1 /


void da(const char r【】,int sa【】,int n,int m)


{


int i,j,p,x=wa,y=wb,t;


for(i=0; i

for(i=0; i

for(i=1; i

for(i=n-1; i>=0; i--) sa【--Ws【x【i】】】=i;


/cout["SA"[endl;;


for(int i=0;i<n+1;i++)cout[sa【i】[' ';/


for(j=1,p=1; p

{


for(p=0,i=n-j; i

for(i=0; i=j) y【p++】=sa【i】-j;


for(i=0; i

for(i=0; i

for(i=0; i

//代码效果参考:http://www.lyjsj.net.cn/wz/art_23206.html

for(i=1; i

for(i=n-1; i>=0; i--) sa【--Ws【wv【i】】】=y【i】;


for(t=x,x=y,y=t,p=1,x【sa【0】】=0,i=1; i

x【sa【i】】=cmp(y,sa【i-1】,sa【i】,j)?p-1:p++;


}


return;


}


int sa【MAXN】,Rank【MAXN】,height【MAXN】;


//求height数组


/< str,sa,len /


void calheight(const char r,int sa,int n)


{


int i,j,k=0;


for(i=1; i<=n; i++) Rank【sa【i】】=i;


for(i=0; i

for(k?k--:0,j=sa【Rank【i】-1】; r【i+k】==r【j+k】; k++);


// Unified


for(int i=n;i>=1;--i) ++sa【i】,Rank【i】=Rank【i-1】;


}


int main()


{


char r【MAXN】;


int m,n,t;


LL H,ans;


cint;


while(t--)


{


cinr;


n=strlen(r);


m=127;


da(r,sa,n+1,m+1);


calheight(r,sa,n);


H=n;


ans=(H+1)H/2;


for(int i=2;i<=n;i++)


{


ans-=height【i】;


}


cout[ans[endl;


}


}

相关文章
|
1天前
|
数据采集 人工智能 安全
|
10天前
|
云安全 监控 安全
|
2天前
|
自然语言处理 API
万相 Wan2.6 全新升级发布!人人都能当导演的时代来了
通义万相2.6全新升级,支持文生图、图生视频、文生视频,打造电影级创作体验。智能分镜、角色扮演、音画同步,让创意一键成片,大众也能轻松制作高质量短视频。
911 150
|
15天前
|
机器学习/深度学习 人工智能 自然语言处理
Z-Image:冲击体验上限的下一代图像生成模型
通义实验室推出全新文生图模型Z-Image,以6B参数实现“快、稳、轻、准”突破。Turbo版本仅需8步亚秒级生成,支持16GB显存设备,中英双语理解与文字渲染尤为出色,真实感和美学表现媲美国际顶尖模型,被誉为“最值得关注的开源生图模型之一”。
1647 8
|
6天前
|
人工智能 前端开发 文件存储
星哥带你玩飞牛NAS-12:开源笔记的进化之路,效率玩家的新选择
星哥带你玩转飞牛NAS,部署开源笔记TriliumNext!支持树状知识库、多端同步、AI摘要与代码高亮,数据自主可控,打造个人“第二大脑”。高效玩家的新选择,轻松搭建专属知识管理体系。
365 152
|
7天前
|
人工智能 自然语言处理 API
一句话生成拓扑图!AI+Draw.io 封神开源组合,工具让你的效率爆炸
一句话生成拓扑图!next-ai-draw-io 结合 AI 与 Draw.io,通过自然语言秒出架构图,支持私有部署、免费大模型接口,彻底解放生产力,绘图效率直接爆炸。
605 152
|
9天前
|
人工智能 安全 前端开发
AgentScope Java v1.0 发布,让 Java 开发者轻松构建企业级 Agentic 应用
AgentScope 重磅发布 Java 版本,拥抱企业开发主流技术栈。
571 13
|
2天前
|
编解码 人工智能 机器人
通义万相2.6,模型使用指南
智能分镜 | 多镜头叙事 | 支持15秒视频生成 | 高品质声音生成 | 多人稳定对话