原文:
给定一串较低的字母字符,当以排序形式连接时,在由(给定字符串的)子字符串构成的字符串中找到第 k 个字符。
示例:
input : str = “banana”
k = 10
output : n
all substring in sorted form are,
"a", "an", "ana", "anan", "anana",
"b", "ba", "ban", "bana", "banan",
"banana", "n", "na", "nan", "nana"
concatenated string = “aananaanana
nanabbabanbanabananbananannanannana”
we can see a 10th character in the
above concatenated string is ‘n’
which is our final answer.
一个简单的pg电子试玩链接的解决方案是生成一个给定字符串的所有子串,并将它们存储在一个数组中。生成子字符串后,对它们进行排序,并在排序后进行连接。最后打印串联字符串中的第 k 个字符。
一个有效的pg电子试玩链接的解决方案是基于使用后缀数组对字符串中不同的子串进行计数的 t2 算法。同样的方法也被用于解决这个问题。在获得后缀数组和 lcp 数组之后,我们循环所有的 lcp 值,对于每个这样的值,我们计算要跳过的字符。我们不断从我们的 k 中减去这许多字符,当要跳过的字符变得大于 k 时,我们停止并循环对应于当前 lcp[i]的子字符串,其中我们从 lcp[i]循环直到字符串的最大长度,然后打印第 kth 个字符。
c
// c program to print kth character
// in sorted concatenated substrings
#include
using namespace std;
// structure to store information of a suffix
struct suffix
{
int index; // to store original index
int rank[2]; // to store ranks and next
// rank pair
};
// a comparison function used by sort() to compare
// two suffixes. compares two pairs, returns 1 if
// first pair is smaller
int cmp(struct suffix a, struct suffix b)
{
return (a.rank[0] == b.rank[0])?
(a.rank[1] < b.rank[1] ?1: 0):
(a.rank[0] < b.rank[0] ?1: 0);
}
// this is the main function that takes a string
// 'txt' of size n as an argument, builds and return
// the suffix array for the given string
vector buildsuffixarray(string txt, int n)
{
// a structure to store suffixes and their indexes
struct suffix suffixes[n];
// store suffixes and their indexes in an array
// of structures. the structure is needed to sort
// the suffixes alphabetically and maintain their
// old indexes while sorting
for (int i = 0; i < n; i )
{
suffixes[i].index = i;
suffixes[i].rank[0] = txt[i] - 'a';
suffixes[i].rank[1] = ((i 1) < n)?
(txt[i 1] - 'a'): -1;
}
// sort the suffixes using the comparison function
// defined above.
sort(suffixes, suffixes n, cmp);
// at his point, all suffixes are sorted according
// to first 2 characters. let us sort suffixes
// according to first 4 characters, then first
// 8 and so on
int ind[n]; // this array is needed to get the
// index in suffixes[] from original
// index. this mapping is needed to get
// next suffix.
for (int k = 4; k < 2*n; k = k*2)
{
// assigning rank and index values to first suffix
int rank = 0;
int prev_rank = suffixes[0].rank[0];
suffixes[0].rank[0] = rank;
ind[suffixes[0].index] = 0;
// assigning rank to suffixes
for (int i = 1; i < n; i )
{
// if first rank and next ranks are same as
// that of previous suffix in array, assign
// the same new rank to this suffix
if (suffixes[i].rank[0] == prev_rank &&
suffixes[i].rank[1] == suffixes[i-1].rank[1])
{
prev_rank = suffixes[i].rank[0];
suffixes[i].rank[0] = rank;
}
else // otherwise increment rank and assign
{
prev_rank = suffixes[i].rank[0];
suffixes[i].rank[0] = rank;
}
ind[suffixes[i].index] = i;
}
// assign next rank to every suffix
for (int i = 0; i < n; i )
{
int nextindex = suffixes[i].index k/2;
suffixes[i].rank[1] = (nextindex < n)?
suffixes[ind[nextindex]].rank[0]: -1;
}
// sort the suffixes according to first k characters
sort(suffixes, suffixes n, cmp);
}
// store indexes of all sorted suffixes in the suffix
// array
vectorsuffixarr;
for (int i = 0; i < n; i )
suffixarr.push_back(suffixes[i].index);
// return the suffix array
return suffixarr;
}
/* to construct and return lcp */
vector kasai(string txt, vector suffixarr)
{
int n = suffixarr.size();
// to store lcp array
vector lcp(n, 0);
// an auxiliary array to store inverse of suffix array
// elements. for example if suffixarr[0] is 5, the
// invsuff[5] would store 0. this is used to get next
// suffix string from suffix array.
vector invsuff(n, 0);
// fill values in invsuff[]
for (int i=0; i < n; i )
invsuff[suffixarr[i]] = i;
// initialize length of previous lcp
int k = 0;
// process all suffixes one by one starting from
// first suffix in txt[]
for (int i=0; i0)
k--;
}
// return the constructed lcp array
return lcp;
}
// utility method to get sum of first n numbers
int sumoffirstn(int n)
{
return (n * (n 1)) / 2;
}
// returns kth character in sorted concatenated
// substrings of str
char printkthcharinconcatsubstring(string str, int k)
{
int n = str.length();
// calculating suffix array and lcp array
vector suffixarr = buildsuffixarray(str, n);
vector lcp = kasai(str, suffixarr);
for (int i = 0; i < lcp.size(); i )
{
// skipping characters common to substring
// (n - suffixarr[i]) is length of current
// maximum substring lcp[i] will length of
// common substring
int chartoskip = sumoffirstn(n - suffixarr[i]) -
sumoffirstn(lcp[i]);
/* if characters are more than k, that means
kth character belongs to substring
corresponding to current lcp[i]*/
if (k <= chartoskip)
{
// loop from current lcp value to current
// string length
for (int j = lcp[i] 1; j <= (n-suffixarr[i]); j )
{
int cursubstringlen = j;
/* again reduce k by current substring's
length one by one and when it becomes less,
print kth character of current substring */
if (k <= cursubstringlen)
return str[(suffixarr[i] k - 1)];
else
k -= cursubstringlen;
}
break;
}
else
k -= chartoskip;
}
}
// driver code to test above methods
int main()
{
string str = "banana";
int k = 10;
cout << printkthcharinconcatsubstring(str, k);
return 0;
}
python 3
# python3 program to print kth character
# in sorted concatenated substrings
# structure to store information of a suffix
class suffix:
def __init__(self):
self.index = 0
# to store original index
self.rank = [0] * 2
# to store ranks and next
# rank pair
# this is the main function that takes a string
# 'txt' of size n as an argument, builds and return
# the suffix array for the given string
def buildsuffixarray(txt: str, n: int) -> list:
# a structure to store suffixes
# and their indexes
suffixes = [0] * n
for i in range(n):
suffixes[i] = suffix()
# store suffixes and their indexes in an array
# of structures. the structure is needed to sort
# the suffixes alphabetically and maintain their
# old indexes while sorting
for i in range(n):
suffixes[i].index = i
suffixes[i].rank[0] = ord(txt[i]) - ord('a')
suffixes[i].rank[1] = (ord(txt[i 1]) -
ord('a')) if ((i 1) < n) else -1
# sort the suffixes using the comparison function
# defined above.
suffixes.sort(key = lambda a: a.rank)
# at his point, all suffixes are sorted according
# to first 2 characters. let us sort suffixes
# according to first 4 characters, then first
# 8 and so on
ind = [0] * n
# this array is needed to get the
# index in suffixes[] from original
# index. this mapping is needed to get
# next suffix.
k = 4
while k < 2 * n:
k *= 2
# for k in range(4, 2 * n, k * 2):
# assigning rank and index values
# to first suffix
rank = 0
prev_rank = suffixes[0].rank[0]
suffixes[0].rank[0] = rank
ind[suffixes[0].index] = 0
# assigning rank to suffixes
for i in range(1, n):
# if first rank and next ranks are same as
# that of previous suffix in array, assign
# the same new rank to this suffix
if (suffixes[i].rank[0] == prev_rank and
suffixes[i].rank[1] == suffixes[i - 1].rank[1]):
prev_rank = suffixes[i].rank[0]
suffixes[i].rank[0] = rank
# otherwise increment rank and assign
else:
prev_rank = suffixes[i].rank[0]
rank = 1
suffixes[i].rank[0] = rank
ind[suffixes[i].index] = i
# assign next rank to every suffix
for i in range(n):
nextindex = suffixes[i].index k // 2
suffixes[i].rank[1] = suffixes[ind[nextindex]].rank[0] if (
nextindex < n) else -1
# sort the suffixes according to first k characters
suffixes.sort(key = lambda a : a.rank)
# store indexes of all sorted suffixes
# in the suffix array
suffixarr = []
for i in range(n):
suffixarr.append(suffixes[i].index)
# return the suffix array
return suffixarr
# to construct and return lcp */
def kasai(txt: str, suffixarr: list) -> list:
n = len(suffixarr)
# to store lcp array
lcp = [0] * n
# an auxiliary array to store inverse of
# suffix array elements. for example if
# suffixarr[0] is 5, the invsuff[5] would
# store 0. this is used to get next
# suffix string from suffix array.
invsuff = [0] * n
# fill values in invsuff[]
for i in range(n):
invsuff[suffixarr[i]] = i
# initialize length of previous lcp
k = 0
# process all suffixes one by one
# starting from first suffix in txt[]
for i in range(n):
# if the current suffix is at n-1, then
# we don’t have next substring to
# consider. so lcp is not defined for
# this substring, we put zero.
if (invsuff[i] == n - 1):
k = 0
continue
# j contains index of the next substring to
# be considered to compare with the present
# substring, i.e., next string in suffix array
j = suffixarr[invsuff[i] 1]
# directly start matching from k'th index as
# at-least k-1 characters will match
while (i k < n and j k < n and
txt[i k] == txt[j k]):
k = 1
lcp[invsuff[i]] = k
# lcp for the present suffix.
# deleting the starting character
# from the string.
if (k > 0):
k -= 1
# return the constructed lcp array
return lcp
# utility method to get sum of first n numbers
def sumoffirstn(n: int) -> int:
return (n * (n 1)) // 2
# returns kth character in sorted concatenated
# substrings of str
def printkthcharinconcatsubstring(string: str,
k: int) -> str:
n = len(string)
# calculating suffix array and lcp array
suffixarr = buildsuffixarray(string, n)
lcp = kasai(string, suffixarr)
for i in range(len(lcp)):
# skipping characters common to substring
# (n - suffixarr[i]) is length of current
# maximum substring lcp[i] will length of
# common substring
chartoskip = (sumoffirstn(n - suffixarr[i]) -
sumoffirstn(lcp[i]))
# if characters are more than k, that means
# kth character belongs to substring
# corresponding to current lcp[i]
if (k <= chartoskip):
# loop from current lcp value to current
# string length
for j in range(lcp[i] 1,
(n - suffixarr[i]) 1):
cursubstringlen = j
# again reduce k by current substring's
# length one by one and when it becomes less,
# print kth character of current substring
if (k <= cursubstringlen):
return string[(suffixarr[i] k - 1)]
else:
k -= cursubstringlen
break
else:
k -= chartoskip
# driver code
if __name__ == "__main__":
string = "banana"
k = 10
print(printkthcharinconcatsubstring(string, k))
# this code is contributed by sanjeev2552
输出:
n
本文由 供稿。如果你喜欢 geeksforgeeks 并想投稿,你也可以使用写一篇文章或者把你的文章邮寄到 review-team@geeksforgeeks.org。看到你的文章出现在极客博客pg电子试玩链接主页上,帮助其他极客。 如果发现有不正确的地方,或者想分享更多关于上述话题的信息,请写评论。
麻将胡了pg电子网站的版权属于:月萌api www.moonapi.com,转载请注明出处