How do I construct strings with exactly one occurrence of 111 from a set E* consisting of all possible combinations of elements in the set {0,1}?

link|improve this question

52% accept rate
1  
Here: 111. Now you're done. Or are you asking how to construct all such strings? Or something else? – svick Sep 24 '11 at 2:48
feedback

2 Answers

You can generate the set of strings based on following steps:

Some chucks of numbers and their legal position are enumerated:


Start: 110

Must have one, anywhere: 111

Anywhere: 0, 010, 0110

End: 011


Depend on the length of target string (the length should be bigger than 3)

Condition 1: Length = 3 : {111}


Condition 2: 6 > Length > 3 : (Length-3) = 1x + 3y + 4z


For example, if length is 5: answer is (2,1,0) and (1,0,1)

(2,1,0) -> two '0' and one '010' -> ^0^010^ or ^010^0^ (111 can be placed in any one place marked as ^)

(1,0,1) -> one '0' and one '0110' ...

Condition 3: If 9 > Length > 6, you should consider the solution of two formulas:


Comments:

length – 3 : the length exclude 111

x: the times 0 occurred

y: the times 010 occurred

z: the times 0110 occurred


Finding all solutions {(x,y,z) | 1x + 3y + 4z = (Length - 3)} ----(1)

For each solution, you can generate one or more qualified string. For example, if you want to generate strings of length 10. One solution of (x,y,z) is (0,2,1), that means '010' should occurred twice and '0110' should occurred once. Based on this solution, the following strings can be generated:


0: x0 times

010: x 2 times

0110: x1 times

111: x1 times (must have)


Finding the permutations of elements above. 010-0110-010-111 or 111-010-010-0110 …

(Length - 6) = 1x + 3y + 4z ---(2) Similar as above case, find all permutations to form an intermediate string. Finally, for each intermediate string Istr, Istr + 011 or 110 + Istr are both qualified.

For example, (10-6) = 1*0 + 3*0 + 4*1 or = 1*1 + 3*1 + 4*0

The intermediate string can be composed by one '0110' for answer(0,0,1): Then ^0110^011 and 110^0110^ are qualified strings (111 can be placed in any one place marked as ^)

Or the intermediate string can also be composed by one '0' and one '010' for answer (1,1,0)

The intermediate string can be 0 010 or 010 0 Then ^0010^011 and 110^0100^ are qualified strings (111 can be placed in any one place marked as ^)

Condition 4: If Length > 9, an addition formula should be consider:


(Length – 9) = 1x + 3y + 4z

Similar as above case, find all permutations to form an intermediate string. Finally, for each intermediate string Istr, 110 + Istr + 011 is qualified.


Explaination:

The logic I use is based on Combinatorial Mathematics. A target string is viewed as a combination of one or more substrings. To fulfill the constraint ('111' appears exactly one time in target string), we should set criteria on substrings. '111' is definitely one substring, and it can only be used one time. Other substrings should prevent to violate the '111'-one-time constraint and also general enough to generate all possible target string.

Except the only-one-111, other substrings should not have more than two adjacent '1'. (Because if other substring have more than two adjacent 1, such as '111', '1111', '11111,' the substring will contain unnecessary '111'). Except the only-one-111, other substrings should not have more than two consecutive '1'. Because if other substring have more than two consecutive 1, such as '111', '1111', '11111,' the substring will contain unnecessary '111' . However, substrings '1' and '11' cannot ensure the only-one-111 constraint. For example, '1'+'11,' '11'+'11' or '1'+'1'+'1' all contain unnecessary '111'. To prevent unnecessary '111,' we should add '0' to stop more adjacent '1'. That results in three qualified substring '0', '010' and '0110'. Any combined string made from three qualified substring will contain zero times of '111'.

Above three qualified substring can be placeed anywhere in the target string, since they 100% ensure no additional '111' in target string.

If the substring's position is in the start or end, they can use only one '0' to prevent '111'.

In start:

10xxxxxxxxxxxxxxxxxxxxxxxxxxxx

110xxxxxxxxxxxxxxxxxxxxxxxxxxx

In end:

xxxxxxxxxxxxxxxxxxxxxxxxxxx011

xxxxxxxxxxxxxxxxxxxxxxxxxxxx01

These two cases can also ensure no additional '111'.

Based on logics mentioned above. We can generate any length of target string with exactly one '111'.

link|improve this answer
I really don't understand your answer above. This answer should not depend on the length of the target string as it can be as long as necessary. All I need to ensure is 111 appears only once in the string, no matter how long it is. – Kobojunkie Sep 24 '11 at 3:53
The length of target string is not constrained. This answer can be used to generate string of any length. The answer divide all problem space into four conditions(l=3, 6>l>3, 9>l>6, l>9), and conquer each condition with slightly different solutions. – 吳強福 Sep 24 '11 at 4:24
To solve the formula, you can use APIs of constraint programming (en.wikipedia.org/wiki/Constraint_programming), such as python-constraint (labix.org/python-constraint). – 吳強福 Sep 24 '11 at 4:55
I would really prefer to understand the logic before I run off learning python just to solve this. I mean I would think I should be able to write a generator for this in any language, provided I have the understanding of the problem and the solution. – Kobojunkie Sep 24 '11 at 21:41
@Kobojunkie I add some explanation in the bottom of original answer. Hope it is helpful for understanding the logic. – 吳強福 Sep 26 '11 at 9:07
feedback

Your question could be clearer.

For one thing, does "1111" contain one occurrence of "111" or two?

If so, you want all strings that contain "111" but do not contain either "1111" or "111.*111". If not, omit the test for "1111".

If I understand you correctly, you're trying to construct an infinite subset of the infinite set of sequences of 0s and 1s. How you do that is probably going to depend on the language you're using (most languages don't have a way of representing infinite sets).

My best guess is that you want to generate a sequence of all sequences of 0s and 1s (which shouldn't be too hard) and select the ones that meet your criteria.

link|improve this answer
I believe 1111 would count as two occurrences of 111. Essentially, the generator in this case should limit the appearance of the sub-string 111 in my string to just one. – Kobojunkie Sep 24 '11 at 12:05
I want to write code to generate strings of 1 through n length but I only allow one occurrence of the sub-string '111' within each string. Only one allowed. No '1111011101111111' allowed. Just one occurrence of '111' allowed. – Kobojunkie Sep 24 '11 at 21:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.