File tree 1 file changed +45
-0
lines changed
Algorithms on String/Algortihmic challenges of String Processing
1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments