Need help with string matching problem

Правка en1, от skavurskaa, 2016-06-15 02:56:27

Short problem statement: Given a binary string S (|S| ≤ 105), find the size of the shortest pattern that doesn't match S.

My current solution is building a suffix automaton for S and searching all patterns of size i (i=1, i=2, ...) while the number of matches of this size equals 2i. When i find some k such that matches(k) < 2k, this is the answer. This is O(|S|) for building suffix automata plus for matchings, which i think is always small but still relevant.

This solution gets TLE. Can anyone help me with a faster solution for this problem? Thanks in advance.

Теги string, substring search, suffix automata

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en5 Английский skavurskaa 2016-06-15 23:48:11 13 Tiny change: 'ents some suffix of length' -> 'ents some pattern of length'
en4 Английский skavurskaa 2016-06-15 03:18:44 166
en3 Английский skavurskaa 2016-06-15 03:13:14 327
en2 Английский skavurskaa 2016-06-15 02:58:26 139 add examples
en1 Английский skavurskaa 2016-06-15 02:56:27 668 Initial revision (published)