in Algorithms retagged by
480 views
0 votes
0 votes

in Algorithms retagged by
480 views

4 Comments

If we travel from A ⇒  D ⇒ B ⇒ A ⇒ C ⇒ A  (Visiting ‘A” TWICE)

We’re getting a cost of 74

But in normal traveling salesmen approach answer is 80 ( A ⇒ B ⇒ D ⇒ C ⇒ A)

Is it allowed to visit the node ‘A’ in between?

The provided key is ‘80’
0
0

@Souvik33  is it allowed to visit the node ‘A’ in between?=  no

2
2
Is it allowed to visit the node ‘A’ in between? No, because it has to be hamiltonian cycle.
2
2
Thankyou for this information 🙂
0
0

Please log in or register to answer this question.

Related questions

1 vote
1 vote
1 answer
4