POJ - 3541 - Given a string…

Given a string…
Time Limit: 10000MS Memory Limit: 65536K
Total Submissions: 1819 Accepted: 390
Case Time Limit: 2000MS

Description

Peter’s Boss is now very upset. He said that Peter’s vision of the orthogonal sum of two strings is not collinear to the general pary line of RIGS. At least, it is very bad that the orthogonal sum of two strings in Peter’s vision can be different depending on a selected set of strings. But Boss decided to give Peter a last str…well, a chance.

Peter’s colleague Andrew invented another definition of orthogonal sum of two strings of equal length n, which depends only on the alphabet. The basic alphabet to define this operation consists only of zeros and ones. The orthogonal sum of two strings a ⊕ b is just a string c where ci = ai ⊕ bi (Si denotes i-th character of string S). Here ⊕ stands for exclusive OR operation which returns 0 for equal characters and 1 otherwise.

Now Peter must study properties of orthogonal closure of a given string S. The orthogonal closure of S (denoted S) is a set of strings S(k) ⊕ S(l) for any 0 ≤ kl ≤ n − 1, where n is the length of S, and S(k) denotes an operation of k-th circular shift of S — moving k last characters from the end of the string S to its beginning. For example, the second circular shift of abcde is deabc.

Given a string T, Peter’s task is to check whether it belongs to S. Could you solve this task for him?

Input

The first line of the input file contains a given string T. The second line contains S. Both strings are of equal length in range from 1 to 5 000 characters. All characters in these strings are zeros or ones.

Output

If a given string belongs to S, output “Yes”. Otherwise output “No”.

Sample Input

#111111
10101
#211110
10101

Sample Output

#1No
#2Yes

Source

Northeastern Europe 2007, Northern Subregion
 
  题意:给你两个串只有0和1的T,S,其中S可以进行循环右移,问你S里面是否存在两个长度都为|S|的子串它们的异或结果等于T。
  算是比较裸的KMP,但是比赛的时候WA了,时候才发现求next数组的对象错了,所以这里记录一下,避免以后再犯这种错误。
  我们平时使用KMP一般只用到next数组,但是对于真的使用KMP求字符串匹配的话,需要求next数组的对象是模式串而不是主串。AC自动机就是把一堆模式串构造出AC自动机。
 
上代码:
 
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <algorithm>
 4 #define MAX 100002
 5 #define ll long long
 6 #define XOR(x,y) ( x==y ? '0' : '1')
 7 using namespace std;
 8 
 9 char s[MAX],t[MAX],e[MAX];
10 int next[MAX];
11 
12 void get_next(char *p,int ls){
13     int k,i;
14     k=-1;i=0;
15     memset(next,-1,sizeof(next));
16     while(i<=ls-1){
17         if(k==-1 || p[i]==p[k]){ k++; i++; next[i]=k;}
18         else k=next[k];
19     }
20 }
21 
22 int kmp(int st,int ls,int lt){
23     int i,j;
24     i=0;j=0;
25     for(int k=0;k<lt;k++) e[k]=XOR(s[st+k],t[k]);
26     e[lt]='\0';
27     get_next(e,lt);
28     while(i<ls && j<lt){
29         if(j==-1 || s[i]==e[j]){ i++; j++;}
30         else j=next[j];
31     }
32     if(j>=lt) return (i-lt+1);
33     return -1;
34 }
35 
36 int main(){
37     int f,lt,ls;
38     //freopen("data.txt","r",stdin);
39     while(scanf("%s",t)!=EOF){
40         scanf("%s",s);
41         lt=strlen(t);
42         ls=strlen(s);
43         for(int i=0;i<ls;i++) s[i+ls]=s[i];
44         s[ls*2]='\0';
45         f=-1;
46         for(int i=0;i<ls;i++){
47             f=kmp(i,ls*2,lt);
48             if(f!=-1) break;
49         }
50         if(f!=-1) printf("Yes\n");
51         else printf("No\n");
52     }
53     return 0;
54 }
/*3541*/

 


转载于:https://www.cnblogs.com/sineatos/p/3932063.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值