zoukankan      html  css  js  c++  java
  • HDU-1358-Period(KMP, 循环节)

    链接:

    https://vjudge.net/problem/HDU-1358#author=0

    题意:

    For each prefix of a given string S with N characters (each character has an ASCII code between 97 and 126, inclusive), we want to know whether the prefix is a periodic string. That is, for each i (2 <= i <= N) we want to know the largest K > 1 (if there is one) such that the prefix of S with length i can be written as A K , that is A concatenated K times, for some string A. Of course, we also want to know the period K.

    思路:

    先求出Next数组, 然后遍历一遍, 求出每个前缀的循环节, 再判断是否满足即可.

    代码:

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <vector>
    //#include <memory.h>
    #include <queue>
    #include <set>
    #include <map>
    #include <algorithm>
    #include <math.h>
    #include <stack>
    #include <string>
    #include <assert.h>
    #include <iomanip>
    #include <iostream>
    #include <sstream>
    #define MINF 0x3f3f3f3f
    using namespace std;
    typedef long long LL;
    const int MAXN = 1e6+10;
    
    int Next[MAXN];
    char s[MAXN], p[MAXN];
    
    void GetNext()
    {
        int len = strlen(p);
        Next[0] = -1;
        int j = 0;
        int k = -1;
        while (j < len)
        {
            if (k == -1 || p[k] == p[j])
            {
                ++k;
                ++j;
                Next[j] = k;
            }
            else
                k = Next[k];
        }
    }
    
    int main()
    {
        int cnt = 0, n;
        while (~scanf("%d", &n) && n)
        {
            scanf("%s", p);
            GetNext();
            printf("Test case #%d
    ", ++cnt);
            for (int i = 2;i <= n;i++)
            {
                int len = i-Next[i];
                if (len != i && i%len == 0)
                    printf("%d %d
    ", i, i/len);
            }
            puts("");
        }
    
        return 0;
    }
    
  • 相关阅读:
    ildasm ilasm的使用,并汉化软件
    Rectangle.Inflate
    cookie 老丢失
    div高度自适应
    css li 空隙问题
    jquery 提交乱码问题
    VS2010创建并使用DLL
    建网站的问题
    Delphi中本年、本月、本周第一天和最后一天
    DLL(OCX)文件注册与反注册方法(regsvr32用法)
  • 原文地址:https://www.cnblogs.com/YDDDD/p/11579131.html
Copyright © 2011-2022 走看看