• POJ


    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

    #1 11111
    10101
    #2 11110
    10101

    Sample Output

    #1 No
    #2 Yes

    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]='';
    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]='';
    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
    ");
    51         else printf("No
    ");
    52     }
    53     return 0;
    54 }
    /*3541*/

  • 相关阅读:
    linux如何添加内核模块
    LINUX内核符号表
    MIPS 架构
    将char转成bit,文件读写
    回顾一下今天VIM历程,加深印象,以免忘记!
    Notebook of A Road Map Through Nachos
    老林课上笔记
    C# 通过探测邮件服务器进行Email地址有效性检验
    详解在visual studio中使用git版本系统(图文)
    基于aspnet Forms身份验证基本原理
  • 原文地址:https://www.cnblogs.com/sineatos/p/3932063.html
Copyright © 2020-2023  润新知