1 0 0 # 1 0 # 1 # # ^^^^^^^^ ^^^^ ^ y x1 x2 Instance: y=4, A={2,1}
I would like to enumerate the SUBSET SUM instances.
Question: What is the (best) time complexity that can be achieved by a Turing Machine $TM_{Enum}$ that on input $m$ (which can be represented on the tape with a string of size $log m + 1$) – outputs the $m$-th SUBSET SUM instance in the above format?
EDIT: Yuval’s answer is fine, this is only a longer explanation. Without loss of generality we set that $y > 0$ and $0 < x_1 leq x_2 leq … leq x_n$, $n geq 0$ And we can represent an instance of subset sum using this encoding: $y # x_1# d_2# …# d_{n} ##$ where $d_i geq 1, x_i = x_{i-1} + d_i – 1 ; , i geq 2$ Using a binary representation for $y,x_1, d_2, d_3, …$ we have the following representation: $1 ; ((0|1)^* # 1)^* ; ##$ Equivalent to $1 ; (0|1|#1)^* ; ##$. There is always a leading 1 and a trailing ## so we can consider only the $(0|1|#1)^*$ part. So the decoder TM on input $m$ in binary format should:
- output the leading 1
- convert $m$ to base 3 mapping digit 2 to $#1$
- when outputing the i-th intermediate $#$ calculate $x_i = d_i + x_{i-1}-1$
- output the trailing $##$
No duplicate instances are generated.
Asked By : Vor
Answered By : Yuval Filmus
Best Answer from StackOverflow
Question Source : http://cs.stackexchange.com/questions/4794