the combinatorics of overlapping squares
play

The Combinatorics of Overlapping Squares Bill Smyth Algorithms - PowerPoint PPT Presentation

Runs Overlapping Squares Applications? The Combinatorics of Overlapping Squares Bill Smyth Algorithms Research Group, Department of Computing & Software McMaster University, Hamilton, Canada Department of Mathematics & Statistics,


  1. Runs Overlapping Squares Applications? The Combinatorics of Overlapping Squares Bill Smyth Algorithms Research Group, Department of Computing & Software McMaster University, Hamilton, Canada Department of Mathematics & Statistics, University of Western Australia, Perth, Australia email: smyth@mcmaster.ca Challenges in Combinatorics on Words The Fields Institute, Toronto 24 April 2013 1 / 17

  2. Runs Overlapping Squares Applications? Abstract I briefly review two closely-related research topics pursued over the last ten years or so: ◮ What is the maximum number of runs (maximal periodicities) in a string of length n ? ◮ What are the limitations on the occurrence of overlapping squares in a string? I suggest new strategies for dealing with these questions, as well as possible algorithmic consequences. 2 / 17

  3. Runs Overlapping Squares Applications? Outline 1. Runs 2. Overlapping Squares 3. Applications? 3 / 17

  4. Runs Overlapping Squares Applications? Repetitions & Runs ◮ If x = vu e w , with integer e > 1 and u neither a suffix of v nor a prefix of w ( e is maximum), then u e is said to be a repetition in x . The integers u and e are the period and exponent, respectively, of the repetition. ◮ For example, in x = abaababaab , (1) there are repetitions a 2 (twice), ( ab ) 2 and ( ba ) 2 , ( aba ) 2 , and ( abaab ) 2 . Each of these repetitions is a square ( e = 2). In general, every repetition has a square prefix. ◮ If v = x [ i .. j ] has period u , where v / u ≥ 2, and if neither x [ i − 1 .. j ] nor x [ i .. j +1] (whenever these are defined) has period u , then x is said to be a maximal periodicity or run in x [M89] and v is said to have exponent e = ⌊ v / u ⌋ and tail t = v mod u . When t = 0, the run is also a repetition. ◮ All of the repetitions in (1) are runs except for ( ab ) 2 and ( ba ) 2 : these are prefix and suffix, respectively, of the run v = ababa . ◮ In general, every repetition is a substring of some run; thus computing all the runs implicitly computes all the repetitions. 4 / 17

  5. Runs Overlapping Squares Applications? Computing Repetitions In the early 1980s three O ( x log x )-time algorithms were proposed to compute all the repetitions in a given string x : ◮ Crochemore [C81] describes a method of successive refinement that identifies all equal substrings of lengths 1 , 2 , . . . until for some length ℓ every substring is unique. As remarked in [S03], his method is essentially an algorithm for suffix tree construction. Crochemore also showed that a string x can contain as many as O ( x log x ) repetitions — thus all these algorithms are optimal. ◮ Apostolico & Preparata [AP83] use suffix trees plus auxiliary data structures. ◮ Main & Lorentz [ML84] use a divide-and-conquer approach based on prior computation of the Lempel-Ziv factorization LZ x . Note: all use global data structures. 5 / 17

  6. Runs Overlapping Squares Applications? Computing LZ [ZL77] Figure: A wide variety of algorithmic approaches to the computation of the Lempel-Ziv factorization, all of them based on the computation of global data structures (from [ACIKSTY13]) 6 / 17

  7. Runs Overlapping Squares Applications? Computing Runs ◮ In 1989 Main [M89] showed how to compute all “leftmost” runs, again from LZ x , in linear time — thus still global data structures. ◮ In 1999 Kolpakov & Kucherov [KK99, KK00] showed how to compute all runs from the leftmost ones, also in linear time. ◮ To establish linearity, they proved that the maximum number ρ ( n ) of runs over all strings of length n satisfies √ n log 2 n ρ ( n ) ≤ k 1 n − k 2 (2) for some universal positive constants k 1 and k 2 . ◮ They provided computational evidence (up to n = 60) that ρ ( n ) ≤ n — this was their conjecture. ◮ Based on work by many authors over the last 10 years, it has been shown that 0 . 944575 < ρ ( n ) / n ≤ 1 . 029: the lower bound is combinatorial [S10], the upper largely computational [CIT11]. 7 / 17

  8. Runs Overlapping Squares Applications? Unsatisfactory Situation Moreover, the expected number of runs in a string of length n is small (Puglisi & Simpson [PS08]): ◮ 0 . 41 n for alphabet size σ = 2; ◮ 0 . 25 n for DNA (Σ = { A , C , G , T } ); ◮ 0 . 04 n for protein ( σ = 20); ◮ 0 . 01 n for English-language text. Runs (hence repetitions) in most strings are sparse! We have to use global data structures to compute something that is not only local in the string, but that generally occurs sparsely — obviously we need to understand better what is going on. 8 / 17

  9. Runs Overlapping Squares Applications? Combinatorial Insight? If ρ ( n ) / n is limited to be near one, it means that on average there is about one run starting at each position. So ... if TWO runs start at some position, then there must be some other position, probably nearby, at which NO runs start. Runs always start with squares — what do we know about squares that begin at about the same position? What combinatorial insight do we have into the restrictions that might be imposed upon occurrences of overlapping squares? Until recently, very little: 9 / 17

  10. Runs Overlapping Squares Applications? From 1906 to 1995! Lemma (Crochemore & Rytter [CR95]) Suppose u is not a repetition, and suppose v � = u j for any j ≥ 1 . If u 2 is a prefix of v 2 , in turn a proper prefix of w 2 , then w ≥ u + v. The Fibonacci string demonstrates that this result is best possible (squares ending at positions 6, 10, 16 = 6+10, 26 = 10+16): 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 x = a b a a b a b a a b a a b a b a a b a b a a b a a b The Three Squares Lemma is a result of great insight: it tells us that if three squares occur at the same position, then one of them has to be “large”. But we need to know much more: what if the three squares just overlap, just occur in the same neighbourhood? What then??? 10 / 17

  11. Runs Overlapping Squares Applications? New Ideas (since 2005) We paraphrase the accumulated results of [FSS05, PST05, S05, FPST06, S07, KS12, FFSS12]: The bulk of the research considers two squares u 2 and v 2 , u < v < 2 u , so that u , but not u 2 , is a prefix of v . There are two cases, whose analysis is quite different, but whose results are qualitatively the same, a breakdown of the string into runs of small period: (C1) v ≤ 3 u / 2; (C2) v > 3 u / 2. The details are complicated, but the main results are as follows: 11 / 17

  12. Runs Overlapping Squares Applications? u < v ≤ 3 u / 2: w not required Theorem (C1) If x = v 2 with prefix u 2 , u < v ≤ 3 u / 2 , then x = u 1 m u 2 u 1 m +1 u 2 u 1 , where u 1 = v − u ≤ u / 2 , u 2 = u mod u 1 ≥ 0 , m = ⌊ u / u 1 ⌋ ≥ 2 , and u 2 is a proper prefix of u 1 . Moreover, x contains no runs of period ≥ u 1 other than specific identifiable ones described in [KS12]. For example, the prefix f [1 .. 10] = v 2 = ( abaab ) 2 of the Fibonacci string f given above has proper prefix u 2 = ( aba ) 2 ; hence u = 3 and v = 5, we find 3 u / 2 < v < 2 u , and so u 1 = a , u 2 = b , the shortest possible C1. Also the prefix f [1 .. 16] = v 2 = ( abaababa ) 2 has proper prefix u 2 = ( abaab ) 2 , so that now u = 5 , v = 8, again satisfying 3 u / 2 < v < 2 u , and u 1 = ab , u 2 = b . 12 / 17

  13. Runs Overlapping Squares Applications? 3 u / 2 < v < 2 u Theorem (C2) Suppose u 2 and v 2 , 3 u / 2 < v < 2 u, occur at the same position i in x . Then v = u 1 u 2 u 1 u 1 u 2 , where u 1 = 2 u − v , u 2 = 2 v − 3 v. If moreover a third square w 2 occurs at position i + k, where v − u < w < v, w � = u, 0 ≤ k < v − u, then x [ i .. i +2 v − 1] breaks down into runs of small period according to 14 well-defined subcases [KS12, FFSS12]. I confess that it is an exaggeration to call this a “theorem” – two of the 14 subcases have been only partly proved [FPST06, FFSS12]. Nevertheless there is convincing evidence from extensive computer simulations [KS12] that the incomplete cases do satisfy the stated constraint. 13 / 17

  14. Runs Overlapping Squares Applications? Two Subcases We show Subcases 5 & 13: for both it is true [KS12] that v = d v / d , with d a prefix of v of length d = gcd( u , v , w ). v ✛ ✲ u ✛ ✲ u 1 u 2 u 1 u 1 u 2 u 1 u 2 u 1 u 1 w (1) w (2) k Figure: Subcase 5: 0 ≤ k ≤ u 1 , u + u 1 < k + w ≤ v v ✛ ✲ u ✛ ✲ u 1 u 2 u 1 u 1 u 2 u 1 u 2 u 1 u 1 u 2 w (1) w (2) k x [ k +1 . . . k +2 w ] ✛ ✲ Figure: Subcase 13: u 1 < k < u 1 + u 2 , v < k + w ≤ 2 u 14 / 17

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend