Skip to content

Commit 8dfecaf

Browse files
committed
Shortest super string of a string
1 parent f262190 commit 8dfecaf

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
using TestCommon;
7+
8+
namespace E1
9+
{
10+
public class Q3LeastLengthString : Processor
11+
{
12+
public Q3LeastLengthString(string testDataName) : base(testDataName)
13+
{
14+
this.VerifyResultWithoutOrder = true;
15+
}
16+
17+
public override string Process(string inStr) =>
18+
E1Processors.ProcessQ3FindAllOccur(inStr, Solve);
19+
20+
public long Solve(string text, long k)
21+
{
22+
long totallenght = 0;
23+
long n = ComputePrefixFunction(text);
24+
return k * text.Length - (k - 1) * n;
25+
}
26+
public long ComputePrefixFunction(string P)
27+
{
28+
int n = P.Length;
29+
long[] s = new long[n];
30+
s[0] = 0;
31+
long border = 0;
32+
for (int i = 1; i < n; i++)
33+
{
34+
while (border > 0 && P[i] != P[(int)border])
35+
{
36+
border = s[border - 1];
37+
}
38+
if (P[i] == P[(int)border]) border++;
39+
else border = 0;
40+
s[i] = border;
41+
}
42+
return s[n - 1];
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)