xtu字串 C. Marlon's String

來源:互聯網
上載者:User

標籤:style   blog   http   color   java   os   io   for   

C. Marlon‘s StringTime Limit: 2000msMemory Limit: 65536KB64-bit integer IO format: %lld      Java class name: Main  

Long long ago, there was a coder named Marlon. One day he picked two string on the street. A problem suddenly crash his brain...

Let Si..j denote the i-th character to the j-th character of string S.

Given two strings S and T. Return the amount of tetrad (a,b,c,d) which satisfy Sa..b + Sc..d = T , a≤b and c≤d.

The operator + means concate the two strings into one.

Input

The first line of the data is an integer Tc. Following Tc test cases, each contains two line. The first line is S. The second line is T. The length of S and T are both in range [1,100000]. There are only letters in string S and T.

Output

For each test cases, output a line for the result.

Sample Input
1aaabbbab
Sample Output
9

解題:與擴充KMP無關,與首碼有關。。。直接KMP

 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <cmath> 5 #include <algorithm> 6 #include <climits> 7 #include <vector> 8 #include <queue> 9 #include <cstdlib>10 #include <string>11 #include <set>12 #define LL long long13 #define INF 0x3f3f3f3f14 using namespace std;15 int fail[100010];16 char pa[100010],s[100010];17 int a[100010],b[100010];18 void kmp(int *arr){19     int i,j,k;20     fail[0] = fail[1] = 0;21     for(i = 1; pa[i]; i++){22         j = fail[i];23         while(j && pa[i] != pa[j]) j = fail[j];24         fail[i+1] = pa[j] == pa[i] ? j+1:0;25     }26     for(j = i = 0; s[i]; i++){27         while(j && s[i] != pa[j]) j = fail[j];28         if(pa[j] == s[i]){29             arr[++j]++;30         }31     }32     for(i = strlen(pa); i >= 0; i--)33         if(fail[i]) arr[fail[i]] += arr[i];34 }35 int main(){36     int t,i,len;37     LL ans;38     scanf("%d",&t);39     while(t--){40         scanf("%s %s",s,pa);41         memset(a,0,sizeof(a));42         memset(b,0,sizeof(b));43         kmp(a);44         reverse(s,s+strlen(s));45         reverse(pa,pa+strlen(pa));46         kmp(b);47         ans = 0;48         for(len = strlen(pa),i = 0; i < len; i++)49             ans += (LL)a[i]*b[len-i];50         printf("%lld\n",ans);51     }52     return 0;53 }
View Code

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.