比赛 |
20160415 |
评测结果 |
WWWWWWWWWW |
题目名称 |
字符串 |
最终得分 |
0 |
用户昵称 |
collor |
运行时间 |
0.108 s |
代码语言 |
C++ |
内存使用 |
67.54 MiB |
提交时间 |
2016-04-15 11:58:17 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<csetjmp>
#include<iostream>
#include<algorithm>
#include<ctime>
#include<cmath>
using namespace std;
typedef long long LL;
const int maxn=100100,maxm=606000;
struct node
{
char ch;
int endflag;
int link[26];
int endnum;
}tree[maxm];
jmp_buf env;
int n,T,len=0,ls;
char s[maxn],ch[maxn];
void add(int k,int now)
{
int child=s[k]-'0';
if (!tree[now].link[child]){
tree[now].link[child]=++len;
tree[len].ch=s[k];
tree[len].endflag=0;
}
int t=now;
now=tree[now].link[child];
if (k==ls-1){
tree[now].endflag++;
tree[now].endnum++;
return ;
}
add(k+1,now);
tree[t].endnum+=tree[now].endnum;
}
void init()
{
cin>>n>>T;
int i=n;
while (i){
i--;
scanf("%s",s); ls=strlen(s);
if (T==1){printf("%d\n",((1+ls)*ls)/2);}
add(0,0);
}
}
void work()
{
}
int main()
{
freopen("stringa.in","r",stdin);
freopen("stringa.out","w",stdout);
init();
work();
return 0;
}