标签:clu 杭电 遇见 sed 一个 def 并且 miss ali
Sample Input
6 2 3 1 3 5 1 4 7 2 8 12 3 8 4 4 9 12 9 10 2 1 2 8 9 10
Sample Output
9
思路:最短路的题目,用floyd 会超时的,用dijkstra就可以,只需要把家看作0,并且将相邻的那些火车站的cost边权看为0就好了(cost[0][u]=0)
#include<cstdio> #include<iostream> #include<algorithm> #include<cstring> #include<cmath> #include<cstdlib> #include<queue> #include<set> #include<map> #include<vector> using namespace std; #define INF 0x3f3f3f3f #define eps 1e-10 typedef long long ll; const int maxn = 1e3+5; const int mod = 1e9 + 7; int gcd(int a, int b) { if (b == 0) return a; return gcd(b, a % b); } int cost[maxn][maxn]; int d[maxn]; bool used[maxn]; int T,n; void dijk(int s) { fill(d,d+1002,INF); fill(used,used+1002,false); d[s]=0; while(true) { int v=-1; for(int u=0;u<=n;u++) { if(!used[u]&&(v==-1||d[u]<d[v])) v=u; } if(v==-1) break; used[v]=true; for(int u=0;u<=n;u++) d[u]=min(d[u],d[v]+cost[v][u]); } } int main() { int S,D; while(cin>>T>>S>>D) { memset(cost,INF,sizeof(cost)); for(int i=0;i<1002;i++) cost[i][i]=0; memset(d,INF,sizeof(d)); n=0; while(T--) { int a,b,l; cin>>a>>b>>l; n=max(max(a,b),n); if(l<cost[a][b]) { cost[a][b]=l; cost[b][a]=l; } } while(S--) { int a; cin>>a; cost[0][a]=0; cost[a][0]=0; } dijk(0); int ans=INF; for(int i=0;i<D;i++) { int end; cin>>end; ans=min(ans,d[end]); } cout<<ans<<endl; } }
标签:clu 杭电 遇见 sed 一个 def 并且 miss ali
原文地址:https://www.cnblogs.com/smallhester/p/9500574.html