Assignment 5 Approximations Solved

$24.99 $18.99

There are numerous problems in computer science for which an efficient solution is not known. Since those problems often have real-world applications, rather than settling for solving them inefficiently, we can instead approximate their solutions, effectively trading some amount of correctness for improved time complexity. The Traveling Salesperson Problem The Traveling Salesperson Problem asks for,…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Description

5/5 – (2 votes)

There are numerous problems in computer science for which an efficient solution is not known. Since those problems often have real-world applications, rather than settling for solving them inefficiently, we can instead approximate their solutions, effectively trading some amount of correctness for improved time complexity.

  • The Traveling Salesperson Problem

The Traveling Salesperson Problem asks for, given a complete, weighted graph, the Hamiltonian cycle of minimum weight. This is a famously difficult problem in computer science1 . In order to make approximate feasible, we consider metric TSP, the restriction to graphs for which the triangle inequality holds2. For example, given:

v1

  • 4

v2 3 v5

  • 6

6 5 8 7

v3 2 v4

Here there are numerous Hamiltonian cycles of minimum weight. One such cycle is (v1, v2, v4, v3, v5, v1) having a weight of 21.

  • Approximating Metric TSP

When TSP is restricted to the metric case, there then exists a relatively simple 2-approximation that runs in polynomial time:

  1. First, construct an MST, which can be done in polynomial time with Kruskal’s algorithm. An MST is a decent starting point for an approximation, since its weight is a lower bound on that of the optimal cycle. For example, in the graph above, we get:

v1

  • 4

v2 3 v5

  • 6

6 5 8 7

v3 2 v4

The tree contains the edges {(v1, v2), (v3, v4), (v2, v5), (v2, v4)} with a weight of 12.

  1. Of course, a tree is not a cycle. In order to construct a cycle from the MST, double the tree edges, effectively allowing each edge to be traversed twice. This can be done as part of a depth-first search of the MST. For example:

CSC 349

Assignment 5 — Approximations

Page 2 of 3

v1

2

2

4

3

v2

v5

3

  • 6

6

5

7

8

5

v3

2

v4

2

We get the cycle (v1, v2, v4, v3, v4, v2, v5, v2, v1) whose total weight is twice that of the tree, 24.

  1. But, the approximate cycle is currently not Hamiltonian (it repeats vertices). To fix this, skip any vertices that have already appeared1. Because the edge weights form a metric (in particular, the triangle inequality holds), skipping vertices will not increase the weight of the cycle. For example:

v1

  • 4

v2 3 v5

7 6

6 5 8 7

v3

2

v4

In the above graph, we start at v1 and follow the cycle to v2, v4, and v3. At this point, we cannot proceed as the next vertex in the cycle is one we’ve already seen. So, we skip until we get to v5. Because the edge weights satisfy the triangle inequality, skipping vertices will never result in a heavier cycle (and in this case, going directly from v3v5 resulting in saving 3 versus v3v4v2v5). We then skip v2 and get to the end v1. This results in the Hamiltonian cycle—and approximate solution to the problem—of (v1, v2, v4, v3, v5, v1).

In your programming language of choice, implement the polynomial time 2-approximation for the metric version of TSP.

Each input will be provided as a complete edge list with weights. Each edge in the graph will be represented by a space separated triple consisting of two vertex identifiers and a weight, indicating an edge between the first vertex and the second of that weight.

You may assume that vertex identifiers are contiguous positive integers starting from 1 (i.e. they begin at 1 and contain no “gaps”). You may also assume that the graph will be complete, that all weights will be natural numbers, and that the weights between vertices form a metric.

For example: the above graph could be represented as:

1 2 2

1 3 7

1 4 6

1 5 4

2 3 6

2 4 5

2 5 3

3 4 2

3 5 8

4 5 7

CSC 349 Assignment 5 — Approximations Page 3 of 3

Your program must accept as a command line argument the name of a file containing an edge list as described above, then print to stdout a Hamiltonian cycle of approximately minimum weight, along with that weight.

For example:

$ ./compile.sh

  • ./run.sh test_files/in1.txt

Hamiltonian cycle of weight 21: 1,2,4,3,5,1

  • Testing

Any approximation naturally has the potential to produce multiple correct solutions. It’s even possible to get lucky and stumble upon the optimal solution (as we did in the example above). The given tsp_tests.py contain tests capable of compiling and running your implementation, parsing its output, and asserting that it has produced an appropriate approximation. These tests can be invoked from the command prompt:

  • python3 tsp_tests.py

———————————————————————-

Ran 3 tests in 0.151s

OK

While the tests have been written in Python, there is no obligation for your implementation to be written in Python. Similarly, there is no obligation for your implementation to use the given graph.py (though you are welcome to do so), however, you should not modify this file, as it is required by the tests.

Your implementation will be tested using tests written in this style, so it must pass the given tsp_tests.py.

  • Submission

The following items must be demonstrated/presented to me in lab on the day of the deadline.

  • none

The following files are required and must be pushed to your GitHub Classroom repository by the deadline:

  • compile.sh — A bash script to compile your submission (even if it does nothing).

  • run.sh — A bash script to run your submission.

  • *.py or *.java — Your source code in Python or Java of a working program.

Assignment 5 Approximations Solved
$24.99 $18.99