zoukankan      html  css  js  c++  java
  • Cyclic Nacklace

    Problem Description
    CC always becomes very depressed at the end of this month, he has checked his credit card yesterday, without any surprise, there are only 99.9 yuan left. he is too distressed and thinking about how to tide over the last days. Being inspired by the entrepreneurial spirit of "HDU CakeMan", he wants to sell some little things to make money. Of course, this is not an easy task.

    As Christmas is around the corner, Boys are busy in choosing christmas presents to send to their girlfriends. It is believed that chain bracelet is a good choice. However, Things are not always so simple, as is known to everyone, girl's fond of the colorful decoration to make bracelet appears vivid and lively, meanwhile they want to display their mature side as college students. after CC understands the girls demands, he intends to sell the chain bracelet called CharmBracelet. The CharmBracelet is made up with colorful pearls to show girls' lively, and the most important thing is that it must be connected by a cyclic chain which means the color of pearls are cyclic connected from the left to right. And the cyclic count must be more than one. If you connect the leftmost pearl and the rightmost pearl of such chain, you can make a CharmBracelet. Just like the pictrue below, this CharmBracelet's cycle is 9 and its cyclic count is 2:

    Now CC has brought in some ordinary bracelet chains, he wants to buy minimum number of pearls to make CharmBracelets so that he can save more money. but when remaking the bracelet, he can only add color pearls to the left end and right end of the chain, that is to say, adding to the middle is forbidden.
    CC is satisfied with his ideas and ask you for help.
     
    Input
    The first line of the input is a single integer T ( 0 < T <= 100 ) which means the number of test cases.
    Each test case contains only one line describe the original ordinary chain to be remade. Each character in the string stands for one pearl and there are 26 kinds of pearls being described by 'a' ~'z' characters. The length of the string Len: ( 3 <= Len <= 100000 ).
     
    Output
    For each case, you are required to output the minimum count of pearls added to make a CharmBracelet.
     
    Sample Input
    3
    aaa
    abca
    abcde
     
    Sample Output
    0
    2
    5
     
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 using namespace std;
     5 
     6 const int MS=100005;
     7 char str1[MS],str2[MS];
     8 int next[MS];
     9 void get_next(char *s,int *next)
    10 {
    11     int i=1,j=0;
    12     next[1]=0;
    13     int len=strlen(s);
    14     while(i<len)
    15     {
    16         if(j==0||s[i-1]==s[j-1])
    17         {
    18             i++;
    19             j++;
    20             next[i]=j;  //求最大循环次数 就用这个
    21             /*
    22             if(s[i-1]==s[j-1])
    23                 next[i]=next[j];
    24             else
    25                 next[i]=j;
    26             */
    27         }
    28         else
    29             j=next[j];
    30     }
    31 }
    32 
    33 int KMP(char *s,char *t)
    34 {
    35     int i=1,j=1;
    36     int len1=strlen(s);
    37     int len2=strlen(t);
    38     get_next(t,next);
    39     while(i<=len1&&j<=len2)
    40     {
    41         if(j==0||s[i-1]==s[j-1])
    42         {
    43             i++;
    44             j++;
    45         }
    46         else
    47             j=next[j];
    48     }
    49     if(j>len2)
    50         return i-len2-1;
    51     return -1;
    52 }
    53 
    54 int main()
    55 {
    56    int T;
    57    scanf("%d",&T);
    58    while(T--)
    59    {
    60        scanf("%s",str2);
    61        get_next(str2,next);
    62        int len=strlen(str2);
    63        if(str2[len-1]!=str2[next[len]-1])
    64             next[len]=next[next[len]];
    65        int ans=len-next[len];
    66       if(ans!=len&&len%ans==0)
    67             printf("0
    ");
    68         else
    69             printf("%d
    ",ans-len%ans);
    70    }
    71     return 0;
    72 }
  • 相关阅读:
    gobject对象不宜作为动态加载的插件
    用内存管理器的钩子函数跟踪内存泄漏
    DBUS与多线程
    broncho小组放假半天为中国奥运加油
    多进程DirectFB用X11显示的死锁问题
    佛诞节快乐
    R语言中substr函数,字符串截取函数
    R语言中while循环
    R语言中求分位数
    R语言中利用sapply函数提取列表中元素
  • 原文地址:https://www.cnblogs.com/767355675hutaishi/p/4303492.html
Copyright © 2011-2022 走看看