题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=2112
6 xiasha westlake xiasha station 60 xiasha ShoppingCenterofHangZhou 30 station westlake 20 ShoppingCenterofHangZhou supermarket 10 xiasha supermarket 50 supermarket westlake 10 -1
50 Hint: The best route is: xiasha->ShoppingCenterofHangZhou->supermarket->westlake 虽然偶尔会迷路,但是因为有了你的帮助 **和**从此还是过上了幸福的生活。 ――全剧终――
WA了13次把这道题A了
思路:如果把这道题的字符串处理一下,来一套模板就产不多了
但是要注意的地方比较多,(1)如果起始点和终点一样,那么输出0,
(2)C++提交
( 3 )可能会有重边,取时间最短的更新
我用的是dijkstra+优先队列 O(nlogn)
#include <iostream>
#include <string.h>
#include <string>
#include <algorithm>
#include <cstdio>
#include <queue>
#include <vector>
#include <map>
const int maxn=2200;
const int INF=99999999;
using namespace std;
typedef pair<int ,int >P;
struct edge
{
int to,cost;
edge(){};
edge(int _to,int _cost)
{
to=_to;
cost=_cost;
}
};
vector<edge>G[maxn];
int dist[maxn],len[maxn][maxn];
void dijkstra()
{
priority_queue<P,vector<P>,greater<P> >que;
for(int i=0;i<maxn-10;i++)dist[i]=INF;
dist[1]=0;
que.push(P(0,1));
while(!que.empty())
{
P p=que.top();
que.pop();
int v=p.second,d=p.first;
for(int i=0;i<G[v].size();i++)
{
edge e=G[v][i];
int d2=e.cost+d;
if(dist[e.to]>d2)
{
dist[e.to]=d2;
que.push(P(dist[e.to],e.to));
}
}
}
}
void init()
{
for(int i=0;i<maxn-10;i++)
for(int j=0;j<maxn-10;j++)
len[i][j]=INF;
for(int i=1;i<maxn-10;i++)G[i].clear();
}
int main()
{
int n;
map<string,int>mp;
string s1,s2;
while(scanf("%d",&n)!=EOF&&n!=-1)
{
mp.clear();
init();
cin>>s1>>s2;
int ct=1;
mp[s1]=1;
if(!mp[s2])mp[s2]=++ct;
for(int i=0;i<n;i++)
{
string a,b;
int lenth;
cin>>a>>b>>lenth;
if(!mp[a])mp[a]=++ct;
if(!mp[b])mp[b]=++ct;
if(len[mp[a]][mp[b]]>lenth)
{
len[mp[a]][mp[b]]=lenth;
len[mp[b]][mp[a]]=lenth;
}
G[mp[a]].push_back(edge(mp[b],len[mp[a]][mp[b]]));
G[mp[b]].push_back(edge(mp[a],len[mp[a]][mp[b]]));
}
dijkstra();
if(dist[mp[s2]]==INF)printf("-1\n");
else printf("%d\n",dist[mp[s2]]);
}
return 0;
}
原文:http://blog.csdn.net/liusuangeng/article/details/41082987