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}?
|
feedback
|
|
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'. | |||||||||||
feedback
|
|
Your question could be clearer. For one thing, does If so, you want all strings that contain 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. | |||||
feedback
|
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