1

I've faced the beltway reconstruction problem and I've developed a simple backtrack algorithm, what algorithms do you know for this problem?
Beltway Reconstruction Problem:
Assume there is a set of non-identical integers between 0 and N, we only have pairwise distances of points of that set mod N, How can we reconstruct the original set using this?

1 Answers1

1

A relatively recent result for a sparse case can be found here (see Algorithm 2). It’s a probabilistic polynomial-time algorithm.

Waldemar
  • 1,107
  • Thanks. I've read these two papers: ___Reconstruction of Integers from Pairwise Distances___ & ___Reconstructing Sets From Interpoint Distances___. Any other references? – Mahdi Khosravi Jul 09 '13 at 07:16