国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

Bzoj 3942: [Usaco2015 Feb]Censoring(kmp)

2019-11-11 05:19:31
字體:
供稿:網(wǎng)友

3942: [Usaco2015 Feb]Censoring Description Farmer John has purchased a subscription to Good Hooveskeeping magazine for his cows, so they have plenty of material to read while waiting around in the barn during milking sessions. Unfortunately, the latest issue contains a rather inapPRopriate article on how to cook the perfect steak, which FJ would rather his cows not see (clearly, the magazine is in need of better editorial oversight). FJ has taken all of the text from the magazine to create the string S of length at most 10^6 characters. From this, he would like to remove occurrences of a substring T to censor the inappropriate content. To do this, Farmer John finds the first occurrence of T in S and deletes it. He then repeats the process again, deleting the first occurrence of T again, continuing until there are no more occurrences of T in S. Note that the deletion of one occurrence might create a new occurrence of T that didn’t exist before. Please help FJ determine the final contents of S after censoring is complete 有一個S串和一個T串,長度均小于1,000,000,設(shè)當(dāng)前串為U串,然后從前往后枚舉S串一個字符一個字符往U串里添加,若U串后綴為T,則去掉這個后綴繼續(xù)流程。 Input The first line will contain S. The second line will contain T. The length of T will be at most that of S, and all characters of S and T will be lower-case alphabet characters (in the range a..z). Output The string S after all deletions are complete. It is guaranteed that S will not become empty during the deletion process. Sample Input whatthemomooofun moo Sample Output whatthefun HINT Source Silver

/*kmp+棧模擬.先將t串自匹配.然后將s與t串匹配.又是fail數(shù)組的套路題orz. */#include<cstring>#include<cstdio>#define MAXN 1000001using namespace std;int l1,l2,top,next[MAXN],fail[MAXN];char s1[MAXN],s2[MAXN],ans[MAXN];void slove(){ int p; for(int i=2;i<=l1;i++) { p=next[i-1]; while(p&&s2[i]!=s2[p+1]) p=next[p]; if(s2[i]==s2[p+1]) p++; next[i]=p; }}void kmp(){ int p; for(int i=1;i<=l1;i++) { ans[++top]=s1[i]; p=fail[top-1]; while(p&&ans[top]!=s2[p+1]) p=next[p]; if(ans[top]==s2[p+1]) p++; fail[top]=p; if(p==l2) top-=l2; } for(int i=1;i<=top;i++) printf("%c",ans[i]);}int main(){ scanf("%s",s1+1);l1=strlen(s1+1); scanf("%s",s2+1);l2=strlen(s2+1); slove();kmp(); return 0;}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 宜君县| 河北省| 柳河县| 阜新| 肇源县| 隆化县| 文成县| 黑水县| 黄浦区| 巨鹿县| 永丰县| 惠州市| 敦化市| 德庆县| 青川县| 竹山县| 溆浦县| 蓬莱市| 广丰县| 牡丹江市| 通化县| 九寨沟县| 南安市| 喀喇沁旗| 郑州市| 周至县| 习水县| 北碚区| 峨边| 隆化县| 错那县| 东兰县| 宿松县| 沂南县| 盐城市| 嘉峪关市| 闽侯县| 东阿县| 望奎县| 锡林郭勒盟| 方城县|