码迷,mamicode.com
首页 > 其他好文 > 详细

【HDU4622】Reincarnation

时间:2019-07-31 22:15:23      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:gis   scanf   ace   cstring   har   nbsp   ring   using   main   

题面

https://vjudge.net/problem/HDU-4622

题解

#include<cstdio>
#include<cstring>
#include<iostream>
#define ri register int
#define N 2050
using namespace std;

int T;
char s[N];
int ans[N][N],q;

struct SAM{
  int ff[N<<1],len[N<<1];
  int ch[N<<1][26];
  int tot,last,ans;
  inline void init() {
    memset(ch,0,sizeof(ch));
    last=tot=1;
    ans=0;
  }
  inline void extend(int c) {
    int p=last,np=++tot; last=np; len[np]=len[p]+1;
    while (p && !ch[p][c]) ch[p][c]=np,p=ff[p];
    if (!p) ff[np]=1;
    else {
      int q=ch[p][c];
      if (len[q]==len[p]+1) ff[np]=q;
      else {
        int nq=++tot;
        for (ri i=0;i<26;i++) ch[nq][i]=ch[q][i];
        ff[nq]=ff[q]; len[nq]=len[p]+1; ans+=len[nq]-len[ff[nq]];
        ans-=(len[q]-len[ff[q]]);
        ff[np]=ff[q]=nq;
        ans+=(len[q]-len[ff[q]]);
        while (p && ch[p][c]==q) ch[p][c]=nq,p=ff[p];
      }
    }
    ans+=len[np]-len[ff[np]];
  }
} sam;

int main() {
  scanf("%d",&T);
  while (T--) {
    scanf("%s",s+1);
    for (ri i=1,l=strlen(s+1);i<=l;i++) {
      sam.init();
      for (ri j=i;j<=l;j++) {
        sam.extend(s[j]-a);
        ans[i][j]=sam.ans;
      }
    }
    scanf("%d",&q);
    while (q--) {
      int l,r;
      scanf("%d %d",&l,&r);
      printf("%d\n",ans[l][r]);
    }
  }
}

 

【HDU4622】Reincarnation

标签:gis   scanf   ace   cstring   har   nbsp   ring   using   main   

原文地址:https://www.cnblogs.com/shxnb666/p/11279182.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!