博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 5769 Substring(后缀数组)
阅读量:5157 次
发布时间:2019-06-13

本文共 2315 字,大约阅读时间需要 7 分钟。

Substring

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)

Total Submission(s): 1570    Accepted Submission(s): 618

Problem Description
?? is practicing his program skill, and now he is given a string, he has to calculate the total number of its distinct substrings.
But ?? thinks that is too easy, he wants to make this problem more interesting.
?? likes a character X very much, so he wants to know the number of distinct substrings which contains at least one X.
However, ?? is unable to solve it, please help him.
 

 

Input
The first line of the input gives the number of test cases T;T test cases follow.
Each test case is consist of 2 lines:
First line is a character X, and second line is a string S.
X is a lowercase letter, and S contains lowercase letters(‘a’-‘z’) only.
T<=30
1<=|S|<=10^5
The sum of |S| in all the test cases is no more than 700,000.
 

 

Output
For each test case, output one line containing “Case #x: y”(without quotes), where x is the test case number(starting from 1) and y is the answer you get for that case.
 

 

Sample Input
2 a abc b bbb
 

 

Sample Output
Case #1: 3 Case #2: 3
Hint
In first case, all distinct substrings containing at least one a: a, ab, abc. In second case, all distinct substrings containing at least one b: b, bb, bbb.
 

 

Author
FZU
 
 
分析:题目中求包含特定字母的不重复子串,我们知道,求不重复子串是后缀数组的基本运用,可以先求出总的不重复子串。
然后求不包含该字母的不重复子串,最后两者相减,即为所求,
计算不包含该字母的不重复子串的时候,可以先求出不包含该字母的总子串数.
再在去重的时候,只减去不包含特定字母的height值即可.
这样的话,我们需要用一个数组记录每个字母,右边最近的特定字母的位置.
代码如下:
#include 
#include
#include
#include
typedef long long ll;using namespace std;const int MAXN=200010;int r[MAXN];int wa[MAXN],wb[MAXN],wv[MAXN],Ws[MAXN];char str[MAXN];int cmp(int *r,int a,int b,int l){
return r[a]==r[b]&&r[a+l]==r[b+l];}void da(const char r[],int sa[],int n,int m) //n为len+1,m一般比数组中最大的数大一点即可{ int i,j,p,*x=wa,*y=wb,*t; for(i=0; i
=0; i--) sa[--Ws[x[i]]]=i; for(j=1,p=1; p
=j) y[p++]=sa[i]-j; for(i=0; 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
=0;i--) { if(str[i]!=ch) { r[i]=rr; } else { ll h=(rr-i-1); rr=i; r[i]=rr; ans2+=h*(h+1)/2; } } ans2+=rr*(rr+1)/2; // cout<
<

 

 
 
 

转载于:https://www.cnblogs.com/a249189046/p/7625758.html

你可能感兴趣的文章
Linux运维必备工具
查看>>
字符串的查找删除
查看>>
NOI2018垫底记
查看>>
快速切题 poj 1002 487-3279 按规则处理 模拟 难度:0
查看>>
Codeforces Round #277 (Div. 2)
查看>>
【更新】智能手机批量添加联系人
查看>>
NYOJ-128前缀式计算
查看>>
淡定,啊。数据唯一性
查看>>
深入理解 JavaScript 事件循环(一)— event loop
查看>>
Hive(7)-基本查询语句
查看>>
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>
判断字符串是否为空的注意事项
查看>>
布兰诗歌
查看>>
js编码
查看>>
Pycharm Error loading package list:Status: 403错误解决方法
查看>>
steps/train_sat.sh
查看>>
转:Linux设备树(Device Tree)机制
查看>>