首页 > 代码库 > 亲和串 (hdu 2203 KMP)
亲和串 (hdu 2203 KMP)
亲和串
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 8049 Accepted Submission(s): 3719
Problem Description
人随着岁数的增长是越大越聪明还是越大越笨,这是一个值得全世界科学家思考的问题,同样的问题Eddy也一直在思考,因为他在很小的时候就知道亲和串如何判断了,但是发现,现在长大了却不知道怎么去判断亲和串了,于是他只好又再一次来请教聪明且乐于助人的你来解决这个问题。
亲和串的定义是这样的:给定两个字符串s1和s2,如果能通过s1循环移位,使s2包含在s1中,那么我们就说s2 是s1的亲和串。
亲和串的定义是这样的:给定两个字符串s1和s2,如果能通过s1循环移位,使s2包含在s1中,那么我们就说s2 是s1的亲和串。
Input
本题有多组测试数据,每组数据的第一行包含输入字符串s1,第二行包含输入字符串s2,s1与s2的长度均小于100000。
Output
如果s2是s1的亲和串,则输出"yes",反之,输出"no"。每组测试的输出占一行。
Sample Input
AABCD CDAA ASD ASDF
Sample Output
yes no
中文题,题意不多说,直接上代码:
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include <string> #include <map> #include <stack> #include <vector> #include <set> #include <queue> #pragma comment (linker,"/STACK:102400000,102400000") #define maxn 100010 #define MAXN 2005 #define mod 1000000009 #define INF 0x3f3f3f3f #define pi acos(-1.0) #define eps 1e-6 typedef long long ll; using namespace std; char str[2*maxn],pstr[2*maxn]; int nextval[2*maxn]; void get_nextval() { int plen=strlen(pstr); int i=0,j=-1; nextval[0]=-1; while (i<plen) { if (j==-1||pstr[i]==pstr[j]) { i++; j++; if (pstr[i]!=pstr[j]) nextval[i]=j; else nextval[i]=nextval[j]; } else j=nextval[j]; } } bool KMP() { int i=0,j=0; int len=strlen(str); int plen=strlen(pstr); while (i<len&&j<plen) { if (j==-1||str[i]==pstr[j]) { i++; j++; } else j=nextval[j]; } if (j==plen) return true; return false; } int main() { while (~scanf("%s%s",str,pstr)) { int len=strlen(str); for (int i=0;i<len;i++) str[len+i]=str[i]; str[len+i]='\0'; get_nextval(); if (KMP()) printf("yes\n"); else printf("no\n"); } return 0; } /* AABCD CDAA ASD ASDF */
亲和串 (hdu 2203 KMP)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。