We consider the greedy algorithm that always choose to jump to the closest unexplored vertex to solve the TSP. Which of the following statements is true?
Which of the following routes can be obtained when applying a greedy algorithm that jumps to the closest vertex and starts from vertex v0?

Consider the problem of finding a longest path in a given weighted graph, starting at vertex u. To solve it, we can adopt the greedy approach of systematically choosing an unexplored edge {v, v'} of maximum weight from the current vertex we are in, v, then jumping to the corresponding vertex v', until there are no such edges left. Which of the following statements are true?
A Pareto optimal is...
We consider the use of a backtracking algorithm to solve the TSP. Which of the following statements are true?