改良旅行推销员
给定一个在边上具有不对称成本的图结构,如果每个节点只能访问一次,是否有一种方法可以以最低的成本遍历一组特定的节点?问题被表述为这样的路径必须存在。
Given a graph structure that has asymmetric costs on the edges, is there a way to traverse a certain set of nodes at lowest cost if you can visit each node only once? Problem is formulated such that such a path must exist.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会使用 A* 算法。
I would use the A* algorithm.
暴力最终会解决问题。
Brute-force will eventually solve the problem.