The Art Gallery Guardian

TSP, Max TSP and Supnick


Problem1

Given and . Find a permutation that maximizes (minimizes)

All our index calculations are mod .

Assume can be evaluated in time. The TSP problem reduces to this one.

Definition2Supnick

For all , , is called Supnick if it has the following properties:

  1. Monge: .
  2. Symmetric: .

The name Supnick comes from Supnick matrix, which are symmetric Monge matrices. The following theorem implies an algorithm to solve the TSP problem if the distance matrix is Supnick [1].

Theorem3Supnick’s

Let , is Supnick, then

  1. is minimized when .

  2. is maximized when .

Supnick matrices appears at many places. For example, maximize the area of a radar chart and find a permutation maximize sum of adjacent distance.

It is a special case of a even larger class of problem that has the above permutation as solution: Quadratic assignment problem where the matrices are monotone antimonge and benevolent symmetric toeplitz matrix [2].

References

[1]
F. Supnick, Extreme hamiltonian lines, Annals of Mathematics. Second Series. 66 (1957) 179–201.
[2]
RainerE. Burkard, E. Çela, G. Rote, GerhardJ. Woeginger, The quadratic assignment problem with a monotone anti-monge and a symmetric toeplitz matrix: Easy and hard cases, Mathematical Programming. 82 (1998) 125–158 10.1007/BF01585868.
Posted by Chao Xu on .
Tags: Algorithm.