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

Hdu Oj 2680 Choose the best route

时间:2015-08-19 11:20:21      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

题目:点击打开链接

代码:

#include<stdio.h>
#include<algorithm>
#define INF 0x3f3f3f3f
using namespace std;
int cost[1010][1010],d[1010];
bool used[1010];
int a,b,c;
void distr(int x)
{
	for(int i=1;i<=a;i++)
	{
		d[i]=INF;
		used[i]=false;
	}
	d[x]=0;
	while(true)
	{
		int v=-1;
		for(int u=1;u<=a;u++)
		if(!used[u]&&(v==-1||d[u]<d[v]))
		v=u;
		if(v==-1)
		break;
		used[v]=true;
		for(int u=1;u<=a;u++)
		d[u]=min(d[u],d[v]+cost[v][u]);
	}
}
int main()
{
	while(~scanf("%d%d%d",&a,&b,&c))
	{
		int i,j;
		int m,n,p;
		int flag;
		for(i=0;i<=a;i++)
		    for(j=0;j<=a;j++)
		    	cost[i][j]=INF;
		for(i=0;i<b;i++)
		{
			scanf("%d%d%d",&m,&n,&p);
			if(cost[n][m]>p)//把终点当起点反向建图,否则超时 
			{
				cost[n][m]=p;
			}
		}
		scanf("%d",&p);
		n=INF;
		distr(c);
		for(i=1;i<=p;i++)
		{
			scanf("%d",&m);
			if(d[m]<n)
			n=d[m];	
		}
		if(n==INF)
		printf("-1\n");
		else
		printf("%d\n",n);
	}
	return 0;
} 


 

 

版权声明:本文为博主原创文章,未经博主允许不得转载。

Hdu Oj 2680 Choose the best route

标签:

原文地址:http://blog.csdn.net/zm_11/article/details/47776247

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