字符串的最小表示法

给定一个字符串,要求求出从某个下标开始,这个字符串的字典序最小,即字符串的最小表示法
比如字符串bbbaaa,从下标3开始表示为aaabbb,字典序最小

暴力算法的时间复杂度为O(n^3)
但是有线性的算法
初始时,让i=0,j=1,k=0;
分为三种情况,
①如果str[i+k] == str[j+k] k++;
②如果str[i+k] > str[j+k] i = i + k + 1, k = 0,  即最小表示不可能以str[i-->i+k]中的任一一个字符串开头
③如果str[i+k] < str[j+k] j = j + k + 1, k = 0, 同上

str[i+k] > str[j+k],不能以下标i开头是显然的,为什么,字符串的最小表示不可能以str[i-->i+k]中的任一一个字符串开头
  这个因为如果str[i+k]>str[j+k],那么str[i+1->k] > str[j+1->k],str[i+2->k]>str[j+2->k]...str[i+k]>str[j+k]
  所以字符串的最小表示不可能以str[i-->i+k]中的任一一个字符串开头

zoj1729 http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=1729

 1 #include <stdio.h>
 2 #include <string.h>
 3 const int N = 100000+10;
 4 char str[N];
 5 int minimalRepresentation()
 6 {
 7     int n = strlen(str);
 8     int i = 0,j = 1, k = 0;
 9     while(i<n && j<n && k<n)
10     {
11         int t = str[(i+k)%n] - str[(j+k)%n] ;
12         if(t == 0)
13             k++;
14         else
15         {
16             if(t>0)
17                 i+=k+1;
18             else
19                 j+=k+1;
20             if(i==j)
21                 j++;
22             k = 0;
23         }
24     }
25     return i < j ? i : j;
26 }
27 int main()
28 {
29     int t;
30     scanf("%d",&t);
31     int n;
32     while(t--)
33     {
34         scanf("%d",&n);
35         scanf("%s",str);
36         int index = minimalRepresentation();
37         printf("%d\n",index);
38     }
39 }
时间: 2024-11-09 00:09:15

字符串的最小表示法的相关文章

循环字符串最大最小表示法模版

循环字符串最大最小表示法模版 定义字符串abcde和cdeab同构,因为abcde转两格即为cdeab,该字符串称为循环字符串. 循环字符串的字典序最小的同构字符串称为最小表示,最大表示同理. 这里只给模版,以后再深究. int getMin(char *s) ///返回首位置 { int n=strlen(s); int i=0,j=1,k=0; while(i<n&&j<n&&k<n){ int t=s[(i+k)%n]-s[(j+k)%n]; if(

【算法】字符串的最小表示法

字符串的最小表示法,就是对于一个字符串,可以将它的最后一位放到第一位来,依次类推,一共有n种变形,n为字符串长度 例如: s="00ab" 变形有(省略引号)b00a ab00 0ab0 一共4种 那么找到其中字典序最小的一个,用的算法便是这个. 定义三个指针,i,j,k 初始i=0;j=1;k=0 首先,如果s[i]<s[j]那么很明显j++ 如果s[i]>s[j]那么也很明显i=j++ 省下的就是如果s[i]==s[j]的时候. 这时候有一个性质就是在i和j之间的所有的

HDU 4162 Shape Number(字符串,最小表示法)

HDU 4162 题意: 给一个数字串(length <= 300,000),数字由0~7构成,求出一阶差分码,然后输出与该差分码循环同构的最小字典序差分码. 思路: 第一步是将差分码求出:s[i] = (s[i] - s[i+1] + 8) % 8; 第二步是求出最小字典序的循环同构差分码,我之前没注意到字符串规模..直接用set做,MLE+TLE... 正确的方式应该是一种O(n)的解法,即最小表示法.//关于最小表示法的证明与详述请参考最小表示法:) 最小表示法算法: 初始时,i=0,j=

字符串最大最小表示法模板 ( 字典序最大最小 )

模板 int getMin(char *s) { int i = 0, j = 1, l; int len = strlen(s); while(i < len && j < len) { for(l = 0; l < len; l++) if(s[(i + l) % len] != s[(j + l) % len]) break; if(l >= len) break; if(s[(i + l) % len] > s[(j + l) % len]) { if

USACO 5.5.2 字符串的最小表示法

这道题是最小表示法的一个应用, 代码如下: /* ID: m1500293 LANG: C++ PROG: hidden */ #include <cstdio> #include <algorithm> #include <cstring> using namespace std; char s[100000 + 100]; int len; int mins(char s[], int len) { int i=0, j=1, k=0; while(i<len

HDU 3374 exkmp+字符串最大最小表示法

题意 找到一个字符串中最先出现的最小(大)表示位置,和最小(大)表示串出现次数 分析 用最小(大)表示法求出最先出现的最小(大)表示位置,然后将串长扩两倍用exkmp找出现次数. Code #include<bits/stdc++.h> #define fi first #define se second #define lson l,mid,p<<1 #define rson mid+1,r,p<<1|1 #define pb push_back #define ll

【最小表示法】BZOJ1398-寻找朋友

[题目大意] 判断两个字符串是否循环同构. [思路] 我一开始的做法是直接同时在两个字符串上求最小表示法,只有部分测试点能过,理由未知,以后再来思考. 现在做法:分别求出两个字符串的最小表示法,再比较是否相等. 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 using namespace std; 6 const int MAXN=100

hdu3374 kmp+最小表示法

Give you a string with length N, you can generate N strings by left shifts. For example let consider the string "SKYLONG", we can generate seven strings: String Rank SKYLONG 1 KYLONGS 2 YLONGSK 3 LONGSKY 4 ONGSKYL 5 NGSKYLO 6 GSKYLON 7 and lexic

[coj 1353 Guessing the Number]kmp,字符串最小表示法

题意:给一个字符串,求它的最小子串,使得原串是通过它重复得到的字符串的一个子串. 思路:先求最小长度,最小循环长度可以利用kmp的next数组快速得到,求出长度后然后利用字符串最小表示法求循环节的最小表示即可. #pragma comment(linker, "/STACK:10240000") #include <map> #include <set> #include <cmath> #include <ctime> #include