1 / 45

2 Dimensional Parameterized Matching

2 Dimensional Parameterized Matching. Carmit Hazay Moshe Lewenstein Dekel Tsur. CPM 2005. CPM 2005. CPM 2005. CPM 2005. CPM 2005. CPM 2005. CPM 2005. CPM 2005. CPM 2005. CPM 2005. CPM 2005. CPM 2005. Parameterized Matching.

Télécharger la présentation

2 Dimensional Parameterized Matching

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 2 Dimensional Parameterized Matching Carmit Hazay Moshe Lewenstein Dekel Tsur

  2. CPM 2005

  3. CPM 2005

  4. CPM 2005

  5. CPM 2005

  6. CPM 2005

  7. CPM 2005

  8. CPM 2005

  9. CPM 2005

  10. CPM 2005

  11. CPM 2005

  12. CPM 2005

  13. CPM 2005

  14. Parameterized Matching • Input: two strings s and t, |s|=|t|, over alphabets ∑s and ∑t. • s parameterize matches t: if bijection : ∑s ∑t , such that (s) = t. Example: a a b b b s (a)=x x x y y y t (b)=y

  15. Parameterized Matching • Input: Two strings T, P; |T|=n, |P|=m. • Output: All text locations i, such that (P)=Ti …Ti+m-1.

  16. 2D Parameterized Matching • Input: Text T and pattern P; |T|=n*n, |P|=m*m. • Output: All text locations (i,j), such that (P)=Ti,j …Ti+m-1,j+m-1. • Example- T a b c a a b b b b (x)=a (y)=b (z)=c P x y z x x y y y y

  17. 2D Parameterized Matching pattern ‘A horse is a horse, it ain’t make a difference what color it is’ John Wayne

  18. Parameterized Matching History • Introduced by Brenda Baker [Baker93]. • Others: [AFM94], [Bak95], [Bak97]. • Two Dimensions: [AACLP03][This work]. • Used in scaled matching [ABL99]. • Periodicity of parameterized matching [ApostolicoGiancarlo]. • Approximate parameterized matching [AEL], [HLS04].

  19. Naïve Algorithm For every location (i,j) of text Check if P parameterized matches at (i,j): 1. For each a  alphabet of P, check if all a’s of P align with same character 2. For each b  alphabet of T, check if all b’s of T align with same character

  20. Naïve Algorithm Time Analysis: If done properly – O(n2m2)

  21. Mismatch pairs • Pair of locations such that the characters disagree parameterized. • Example, a a b a a a x x y x z y

  22. 1D Encoding • Encode every text location by its predecessor location. First a to its left T a b a d d a b d b c b d a a b d a a a a b b b 1 3 6 13 14 15 16 17 18 Encoded T 0 1 3 6 13 14 15 16 17

  23. 1D Encoding • Two p-matching strings have the same encoded texts. S a b b c b a a c b b c b a Encoded S 0 0 2 0 3 1 6 4 5 9 8 10 7 T x y y z y x x z y y z y x Encoded T 0 0 2 0 3 1 6 4 5 9 8 10 7

  24. 1D Encoding • Hence, in order to check whether two strings p-match, enough to compare their encoded strings. • Reduction to exact matching problem. S a b b c b b a c b b c b a Encoded S 0 0 2 0 3 5 6 4 5 9 8 10 7 T x y y z y x x z y y z y x Encoded T 0 0 2 0 3 1 6 4 5 9 8 10 7

  25. 2D Mismatch Pairs • Same as 1D mismatch pairs, but with 2D strings. Example: a b a b a b b a b x y x y y y y y y

  26. 2D Encoding • First idea, Encode the linearization of text and pattern. As you will all see this box frames the text that it contains. That is 2D textall in this little box. As you will see this box frames the texts that it Contains. That is 2D text All in this little box.

  27. As you will see this box frames the texts that it Contains. That is 2D text All in this little box. 2D Encoding • First idea, Encode the linearization of text and pattern. As you will see this box frames the texts that it Contains. That is 2D text All in this little box.

  28. 2D Encoding • First idea, Encode the linearization of text and pattern. Overflow problem!! a b Different character than b b a b

  29. 2D Encoding • Second idea, use strips. • Strip – Substring of T of size n*m. • i-th strip of T, is n*m substring T[1:n,i:i+m-1]. i

  30. Second Solution • For Pattern P compute predecessors on its linearization. • For each strip of T, compute predecessors on its linearization. • Do Pattern Matching for each strip. • Time – O(n2m). Can we do better?

  31. A Faster Solution • Set into Duel-and-Sweep setting • Needs special care for Duel, Sweep • Especially difficult: Pattern preprocessing • Desired Time: O(n2 + poly(m)) • We Achieve: O(n2 + m2.5polylog m)

  32. Remember… • Observation: T p-matches P Every text location and its predecessor are not a mismatch pair + # of distinct characters in P and T equal

  33. Algorithm Outline • Duel and sweep paradigm • Find candidates - Dueling • Divide candidates by strips • Update predecessors of every new strip • Check new predecessors - Sweep • Assume pattern witness table given.

  34. Witness • Witness – Mismatch pair between P and its alignment to location (a,b). +a +b

  35. Set Candidates • Using duel- Every two text locations that has a witness within their alignment can eliminate each other. • Apply algorithm [ABF94] and return list of candidates. • Time – O(n2).

  36. Sweep Technique • Observation, • All candidates agree with each other. • Hence, • Mismatch pair eliminates all candidates containing it. • Therefore, • For every predecessor, enough to find one candidate that contains it.

  37. Sweep Technique • How to find? • Create new 2m*2m array A such that, A[i,j] = largest row among candidates that starts at column j and overlap with row i. x

  38. Sweep Technique • For every predecessor (i,j), (x,y), use range minima query to find highest candidate contain predecessor.

  39. Sweep Technique • In case of a mismatch pair, eliminate all candidates containing it. • How? Use mismatch vector. Every mismatch pair translate into range. For new strips, delete old mistakes and add new. All candidates within this range are eliminated.

  40. Sweep Technique • Reminder- T p-matches P Every text location and its predecessor are not mismatch pair + # of distinct characters in P and T equal • Left to do? • Count distinct characters for every candidates. • Use algorithm of Amir and Cole, time O(m2).

  41. Overview Checking all predecessors takes linear time. Total time O(n2).

  42. Pattern Preprocessing • Witness – Mismatch pair between P and its alignment to location (a,b). +a +b

  43. Pattern Preprocessing • Find witness table for P in time O(m2.5 * polylogm). • For every pattern location (i,j), create list of size O( ) pointers. • Pointer i is predecessor in lines above (i,j). • Reduce to exact matching with don’t cares.

  44. Pattern Preprocessing • End cases, multiple cases. Less than B1 A1 A2 B2 B3 A3 B4 A4

  45. Open Questions • Can the algorithm time complexity be reduced into O(n2+m2)?

More Related