码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 2686 Traveling by Stagecoach(状压DP)

时间:2017-01-25 23:02:49      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:algorithm   highlight   无向图   bre   http   sizeof   min   ons   clu   

 

【题目链接】 http://poj.org/problem?id=2686

 

【题目大意】

  给出一张无向图,你有n张马车票每张车票可以租用ti匹马,
  用一张马车票从一个城市到另一个城市所用的时间为这两个城市间的道路距离除以马的数量
  一张马车票只能用一次,问从a到b的最短时间

 

【题解】

  dp[S][u]表示剩余的车票集合为S,到达u所用的最短时间,
  之后我们枚举剩余的车票集合,枚举边和用的车票,进行状态转移。

 

【代码】

#include <cstdio>
#include <climits>
#include <algorithm>
#include <cstring>
using namespace std;
const int N=10,M=35;
const double INF=1000000000;
int x,y,c,n,m,a,b,p,t[N],d[M][M];
double dp[1<<N][M];
int main(){
    while(~scanf("%d%d%d%d%d",&n,&m,&p,&a,&b)){
    	if(n+m+p+a+b==0)break;
        memset(d,-1,sizeof(d));
        for(int i=0;i<n;i++)scanf("%d",&t[i]);
        for(int i=1;i<=p;i++){
            scanf("%d%d%d",&x,&y,&c);
            d[x-1][y-1]=c; d[y-1][x-1]=c;
        }for(int S=0;S<1<<n;S++)fill(dp[S],dp[S]+m,INF);
        dp[(1<<n)-1][a-1]=0;
        double res=INF;
        for(int S=(1<<n)-1;S>=0;S--){
            res=min(res,dp[S][b-1]);
            for(int v=0;v<m;v++){
                for(int i=0;i<n;i++)if((S>>i)&1){
                    for(int u=0;u<m;u++){
                        if(d[v][u]>=0){
                            dp[S&~(1<<i)][u]=min(dp[S&~(1<<i)][u],dp[S][v]+(double)d[v][u]/t[i]);
                        }
                    }
                }
            }
        }if(res==INF)puts("Impossible\n");
        else printf("%.3f\n",res);
    }return 0; 
}

POJ 2686 Traveling by Stagecoach(状压DP)

标签:algorithm   highlight   无向图   bre   http   sizeof   min   ons   clu   

原文地址:http://www.cnblogs.com/forever97/p/poj2686.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!