博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 3311 Hie with the Pie(状压DP + Floyd)
阅读量:6462 次
发布时间:2019-06-23

本文共 2369 字,大约阅读时间需要 7 分钟。

题目链接:

Description

The Pizazz Pizzeria prides itself in delivering pizzas to its customers as fast as possible. Unfortunately, due to cutbacks, they can afford to hire only one driver to do the deliveries. He will wait for 1 or more (up to 10) orders to be processed before he starts any deliveries. Needless to say, he would like to take the shortest route in delivering these goodies and returning to the pizzeria, even if it means passing the same location(s) or the pizzeria more than once on the way. He has commissioned you to write a program to help him.

Input

Input will consist of multiple test cases. The first line will contain a single integer n indicating the number of orders to deliver, where 1 ≤ n ≤ 10. After this will be n + 1 lines each containing n + 1 integers indicating the times to travel between the pizzeria (numbered 0) and the n locations (numbers 1 to n). The jth value on the ith line indicates the time to go directly from location i to location j without visiting any other locations along the way. Note that there may be quicker ways to go from i to j via other locations, due to different speed limits, traffic lights, etc. Also, the time values may not be symmetric, i.e., the time to go directly from location i to j may not be the same as the time to go directly from location j to i. An input value of n = 0 will terminate input.

Output

For each test case, you should output a single number indicating the minimum time to deliver all of the pizzas and return to the pizzeria.

Sample Input

30 1 10 101 0 1 210 1 0 1010 2 10 00

Sample Output

8

Source

PS:

  1. //Floyd + 状态压缩DP  
  2. //题意是有N个城市(1~N)和一个PIZZA店(0),要求一条回路。从0出发,又回到0,并且距离最短  
  3. //也就是TSP(旅行商)问题,首先不难想到用FLOYD先求出随意2点的距离dis[i][j]  
  4. //接着枚举全部状态,用11位二进制表示10个城市和pizza店,1表示经过,0表示没有经过  
  5. //定义状态DP(i,j)表示在i状态下。到达城市j的最优值  

题意解说什么的都去看:

代码例如以下:

#include 
#include
#include
using namespace std;const int maxn = 17;int d[maxn][maxn];int dp[1<
d[i][k]+d[k][j]) { d[i][j] = d[i][k]+d[k][j]; } } } }}int main(){ while(scanf("%d",&n) && n) { for(int i = 0; i <= n; i++) { for(int j = 0; j <= n; j++) { scanf("%d",&d[i][j]); } } Floyd();//跑出各点之间的最短距离 for(int i = 0; i <= (1<
dp[(1<

转载地址:http://zahzo.baihongyu.com/

你可能感兴趣的文章
POJ 3311 Hie with the Pie(状压DP + Floyd)
查看>>
HDU 1402 A * B Problem Plus FFT
查看>>
[CareerCup] 17.3 Factorial Trailing Zeros 求阶乘末尾零的个数
查看>>
Security updates and resources
查看>>
深入理解JavaScript系列(25):设计模式之单例模式
查看>>
DNS为什么通常都会设置为14.114.114.114
查看>>
给定一个序列,判断该序列是否为二叉树查找树的后序遍历序列
查看>>
Sqoop架构(四)
查看>>
golang copy函数
查看>>
《你有多少问题要请示》精华集粹
查看>>
深度 | 机器学习敲门砖:任何人都能看懂的TensorFlow介绍【转】
查看>>
leveldb学习:DBimpl
查看>>
MySQL存储引擎--MYSIAM和INNODB引擎区别
查看>>
[Recompose] Stream Props to React Children with RxJS
查看>>
打印图片
查看>>
apache 配置
查看>>
SHOW CREATE DATABASE Syntax
查看>>
rsync常见问题及解决办法
查看>>
AKM项目轶事之GBS同事转入GDC
查看>>
MySQL日期 专题
查看>>