I have a string (s). I need to find the smallest set of substrings of s such that no substring is shorter than l, longer than L, overlaps it's predecessor by less than o or more than O and that the substrings can be reassembled discarding overlap to reform s, i.e. they provide complete coverage of s.

s, l, L, o, and O are all input parameters.

A simple depth first search of the substring-set-space can be done in exponential time. I was wondering whether I can verify that a given set of substrings S is the smallest set matching the constraints in polynomial time, which would make the problem NP-something, presumably NP-hard. My logic goes as follows though: I can verify whether S is smaller (or larger) than some specific size in polynomial time (actually in linear time). But without knowing all the other possible matching sets, which apparently take exponential time to generate, I can't know whether S is the smallest of the bunch. This would mean the problem is EXPTIME and not NP-hard right?

I'm not 100% certain because of the similarity of my problem to the set cover problem.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.