I read a lot about the full weighted schedule and the Hamilton tour on this site, which was asked by one of the users, asked a lot of staff at my university, but I couldnโt get a good answer, I change the important part of this question as follows:
Task A: Given the full weighted schedule of G, find the weights of the Hamilton tour with the minimum weight.
Problem B: taking into account the full weighted graph G and the real number R, then G have a Hamilton tour with a mass of at most R?
Suppose there is a machine that solves B. How many times can we call B (each time G and a real number R are given) to solve problem A with this machine? Suppose that the sum of the edges in G is up to M.
I read this file , on page 2 he wrote:
a) optimization problem (in the strict sense): find the optimal solution
b) assessment problem: determine the value of the optimal solution
c) related problem: for a given boundary B, determine whether the value of the optimal solution is above or below B.
in the next two paragraphs
To use c) in solution b) we use the fact that the possible values โโof the combinatorial problem are usually discrete and integers can be accepted. Suppose we can solve the associated problem c) over time T. For the corresponding problem of estimating b) it is usually a priori known that the value lies in a certain range of [L, U] integers. Using binary search, we solve the evaluation problem with log | U - L | causes the associated problem c) and, therefore, in time T log | U - L |.
and in the following he wrote:
Example: TSP on a weighted graph Kn = (V, E, w: E โ Reals), | V | = n, | E | equals n-choose-2. Use c) for solution b). A tour or a Hamiltonian cycle in a graph of n vertices has exactly n edges. Thus, the sum S of the largest n edges is the upper bound on the length of the optimal tour. On the other hand, the sums of all m choose -n subsets of n edges, the set of numbers is finite and the minimum nonzero difference d among these two numbers determines the granularity of the lengths of the tour. Two different tours have the same meaning or their length differs by at least d. Thus, a binary search that calculates log (S / d) related problems determines the length (value) of the optimal tour.
My question is: can we adapt this solution to select (3) in this way?