zoukankan      html  css  js  c++  java
  • NEFU 697 Similar Word KMP

    Similar Word

    Time Limit 1000ms

    Memory Limit 65536K

    description

      It was a crummy day for Lur. He failed to pass to the CET-6 (College English Test Band-6). Looking back on how it was in last year gone by, he gradually noticed he had fled too many English Lessons. But he determines to memorize words on his bed ,not in the classroom. You know, it is not that easy to pass the test mainly because the large amount of born words. 
         Lur is intelligent on games , never English. He cann't learn the similar words by heart. He 
    always choose to select a word to learn from the similar words . For him, two words are similar if and only if one word can equal to the other by multiple cyclic shift(at least 1). For example, "car" and "arc" are similar words, while "car" and "rca" are also similar words . To save more time to play games, 
      Lur want to know wether two words are similar words faster, he asks you to write a program to tell him ,can you help him ? 
    							

    input

      There are multiple test cases. Each case contains two lines. Each line contains a word, 
    W. You can assume that length(W)<=10^5 . Ended by EOF.
    							

    output

      Output “yes” in a single line if two words are similar,otherwise you should output  “no” in a single line.
    							

    sample_input

    car
    arc
    car
    cra
    car
    car
    							

    sample_output

    yes
    no
    no
    							

    -------------

    KMP

    但是!!直接暴力也能过!!!魂淡!!!!

    ------------

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    
    using namespace std;
    
    char T[1111111];
    char P[1111111];
    int  f[1111111];
    
    
    bool find()
    {
        int n=strlen(T),m=strlen(P);
        f[0]=0;
        f[1]=0;
        for (int i=1; i<m; i++)
        {
            int j=f[i];
            while (j && P[i]!=P[j]) j=f[j];
            f[i+1]=(P[i]==P[j])?(j+1):(0);
        }
    
        int j=0;
        for (int i=0; i<n; i++)
        {
            while (j && P[j]!=T[i]) j=f[j];
            if (P[j]==T[i]) j++;
            if (j==m) return true;
        }
        return false;
    }
    
    int main()
    {
        while (~scanf("%s%s",T,P))
        {
            memset(f,0,sizeof(f));
            int lenT=strlen(T);
            int lenP=strlen(P);
            if (lenT!=lenP)
            {
                printf("no\n");
            }
            else if (strcmp(P,T)==0)
            {
                printf("no\n");
            }
            else
            {
                for (int i=lenT; i<lenT*2; i++)
                {
                    T[i]=T[i-lenT];
                }
                T[lenT*2]='\0';
                if (find())
                {
                    printf("yes\n");
                }
                else
                {
                    printf("no\n");
                }
            }
    
        }
        return 0;
    }
    


  • 相关阅读:
    日常工作不常用内容记录:
    python接口自动化(四)——试着实现以下主程序
    python接口自动化(三)——从excel中获取数据
    redis工具类
    Airtest新年“首更”,1.1.7版本抢先看!
    AirtestIDE有哪些好用但是非常隐蔽的小功能?
    年终力荐:网易一站式的自动化测试解决方案
    This和Prototype定义方法的区别
    新版 IDEA 发布,牛逼!网友:内存占用有所好转!
    where 1=1 是什么鬼?
  • 原文地址:https://www.cnblogs.com/cyendra/p/3226386.html
Copyright © 2011-2022 走看看