标签:algorithm
4 4 1 2 2 2 3 4 1 4 1 3 4 2 2 1 3 1 2
1 0#include<stdio.h> #include<algorithm> using namespace std; #define inf 9999999 typedef struct n { int v,u,s; }Edg; int fath[205]; int cmp(Edg a,Edg b) { return a.s<b.s; } void init(int n) { for(int i=0; i<=n; i++) fath[i]=i; } int find(int x) { if(x!=fath[x]) fath[x]=find(fath[x]); return fath[x]; } void set(int x,int y) { int xx,yy; xx=find(x); yy=find(y); if(xx!=yy) fath[xx]=yy; } int main() { int n,m,q,v,u; Edg edg[1005]; while(scanf("%d%d",&n,&m)>0) { for(int i=0; i<m; i++) scanf("%d%d%d",&edg[i].v,&edg[i].u,&edg[i].s); sort(edg,edg+m,cmp); scanf("%d",&q); while(q--) { scanf("%d%d",&v,&u); int min=inf,MM,j; for(int i=0; i<m; i++)//枚举出假设第i边为从起点到终点的边中速度最小的边 { init(n); for( j=i; j<m; j++)//i后的边进行并查集,并查找起点到能否到终点 { set(edg[j].v,edg[j].u); if(find(v)==find(u)) break;//可以从起点到终点就 } if(j==m)break; //直接跳出是因为i后的所有边都不可能从起点到达终点 MM=edg[j].s-edg[i].s; if(MM<min)min=MM; } printf("%d\n",min!=inf?min:-1); } } return 0; }
hdu1598find the most comfortable road(并查集+枚举,求起点到终点的边中最大边减最小边差值最小),布布扣,bubuko.com
hdu1598find the most comfortable road(并查集+枚举,求起点到终点的边中最大边减最小边差值最小)
标签:algorithm
原文地址:http://blog.csdn.net/u010372095/article/details/25926419