其他分享
首页 > 其他分享> > 循环字符串的最小表示

循环字符串的最小表示

作者:互联网

Once upon a time there was a famous actress. As you may expect, she played mostly Antique Comedies most of all. All the people loved her. But she was not interested in the crowds. Her big hobby were beads of any kind. Many bead makers were working for her and they manufactured new necklaces and bracelets every day. One day she called her main Inspector of Bead Makers (IBM) and told him she wanted a very long and special necklace.

The necklace should be made of glass beads of different sizes connected to each other but without any thread running through the beads, so that means the beads can be disconnected at any point. The actress chose the succession of beads she wants to have and the IBM promised to make the necklace. But then he realized a problem. The joint between two neighbouring beads is not very robust so it is possible that the necklace will get torn by its own weight. The situation becomes even worse when the necklace is disjoined. Moreover, the point of disconnection is very important. If there are small beads at the beginning, the possibility of tearing is much higher than if there were large beads. IBM wants to test the robustness of a necklace so he needs a program that will be able to determine the worst possible point of disjoining the beads.

The description of the necklace is a string A = a1a2 ... am specifying sizes of the particular beads, where the last character am is considered to precede character a1 in circular fashion.

The disjoint point i is said to be worse than the disjoint point j if and only if the string aiai+1 ... ana1 ... ai-1 is lexicografically smaller than the string ajaj+1 ... ana1 ... aj-1. String a1a2 ... an is lexicografically smaller than the string b1b2 ... bn if and only if there exists an integer i, i <= n, so that aj=bj, for each j, 1 <= j < i and ai < bi

Input

The input consists of N cases. The first line of the input contains only positive integer N. Then follow the cases. Each case consists of exactly one line containing necklace description. Maximal length of each description is 10000 characters. Each bead is represented by a lower-case character of the english alphabet (a--z), where a < b ... z.

Output

For each case, print exactly one line containing only one integer -- number of the bead which is the first at the worst possible disjoining, i.e.\ such i, that the string A[i] is lexicographically smallest among all the n possible disjoinings of a necklace. If there are more than one solution, print the one with the lowest i.

Sample Input

4
helloworld
amandamanda
dontcallmebfu
aaabaaa

Sample Output

10
11
6
5
题意:一个循环同构字符串,即首尾相接,找出一个下标i,使得从这个下标开始i~len, 0~i-1组成的字符串字典序最小。

思路:最小表示法,通过俩指针的移动,很快可以找到它的起始坐标。

 

 1 //假设有两个下标i,j,表示如果从i和从j出发的字符串,有一个k表示字符串的长度,如果长度达到len,就表示找到最小的串
 2 #include <stdio.h>
 3 #include <string.h>
 4 #include <algorithm>
 5 using namespace std;
 6 int minString(char *s)
 7 {
 8     int len=strlen(s);
 9     int i=0,j=1,k=0;
10     while(i<len&&j<len&&k<len) //两个出发位置从下标中选取 i,j<len  ,(最多有len位相同,如aaaa, len=4,以i=0,j=1开头的两个序列在k=4时循环结束) 
11     {
12         if(s[(i+k)%len]==s[(j+k)%len]) k++;
13         else
14         {
15             if(s[(i+k)%len]>s[(j+k)%len]) 
16             i=i+k+1;//从i为起点的序列和以j为起点的序列在经过k个元素的对应比较后,开始有不同的元素了,
17             //并且这两个不同的元素相比,以j开头的那个要小于以i开头的那个,所以在长度相等的情况下以j开头的这一段要优于以i开头的那一段
18             //所以就放弃以i开头,长度为k的序列,已经不是最优解了,就要把开头定在这个序列的后面,即新的i=i+k+1 
19             else j=j+k+1;//(即s[(i+k)%len]>s[(j+k)%len]时,以j开头的序列不是最优解) 
20             if(i==j) j++;//保证两个序列的起点不一样
21             k=0;//这里出现不同的元素后k就清0了,重新累加他们有多少个相同的元素,为了知道当出现不相等元素时不是最优解的序列应该把开头往后挪几位         
22         }
23     }
24     return min(i,j);//最优解是开头小的那个序列,因为不是最优解的已经加k往后试图寻找新的开头了,而当前最优解的开头还停留在原位,所以最优解永远是开头小的那个 
25 }
26 int main()
27 {
28     int t; 
29     char s[100000];
30     scanf("%d",&t);
31     while(t--)
32     {
33         scanf("%s",s);
34         printf("%d\n",minString(s)+1);
35     }
36     return 0;
37 } 

 

 

 

 1 # include <stdio.h>
 2 # include <string.h>
 3 # include <algorithm>
 4 using namespace std;
 5 int main()
 6 {
 7     int T;
 8     char s[10003];
 9     scanf("%d",&T);
10     while(T--)
11     {
12         scanf("%s",s);
13         int len = strlen(s);
14         int i=0, j=1, k=0, t;
15         while(i<len && j<len && k<len)
16         {
17             t = s[(j+k)%len] - s[(i+k)%len];
18             if(t == 0)
19                 ++k;//当前长度
20             else
21             {
22                 if(t > 0)
23                     j = j + k + 1;//已可以肯定起点不在j~j+k之间了。
24                 else
25                     i = i + k + 1;//理由同上
26                 if(i == j)//保证两个指针指向不同的数
27                     ++j;//或++i
28                 k = 0;
29             }
30         }
31         printf("%d\n",min(i, j)+1);
32     }
33     return 0;
34 }

 

标签:...,beads,int,最小,len,necklace,循环,开头,字符串
来源: https://www.cnblogs.com/csx-zzh/p/14427434.html