hdu 2112

本来是拿来复习一下map的,没想搞了半天,一直wa,最后发现预处理没有处理到所有的点

就是个最短路

Sample Input

6
xiasha westlake
xiasha station 60
xiasha ShoppingCenterofHangZhou 30
station westlake 20
ShoppingCenterofHangZhou supermarket 10
xiasha supermarket 50
supermarket westlake 10
-1

Sample Output
50

Hint:
The best route is:
xiasha->ShoppingCenterofHangZhou->supermarket->westlake

虽然偶尔会迷路,但是因为有了你的帮助
**和**从此还是过上了幸福的生活。

――全剧终――
 1 #include<cstdio>
 2 #include<iostream>
 3 #include<algorithm>
 4 #include<cstring>
 5 #include<cmath>
 6 #include<queue>
 7 #include<map>
 8 const int maxint=9999999;
 9 //printf("----\n");
10 using namespace std;
11 int m,t;
12 int tot=0;
13 map<string,int> st;
14 int c[200][200],dist[200];
15 void dijkstra(int u,int n)
16 {
17     //printf("%d\n",n);
18     bool vis[200];
19     for(int i=1;i<=n;i++)
20     {
21         vis[i]=0;
22         dist[i]=c[u][i];
23     }
24     vis[u]=1;
25     for(int i=2;i<=n;i++)
26     {
27         int temp=maxint;
28         int k=u;
29         for(int j=1;j<=n;j++)
30         {
31             if(!vis[j]&&dist[j]<temp)
32             {
33                 temp=dist[j];
34                 k=j;
35             }
36         }
37         if(temp==maxint)    break;
38         vis[k]=1;
39         for(int j=1;j<=n;j++)
40         {
41             if(!vis[j]&&c[k][j]<maxint)
42             {
43                 if(dist[k]+c[k][j]<dist[j])
44                     dist[j]=dist[k]+c[k][j];
45             }
46         }
47     }
48 }
49 int main()
50 {
51     int i,j,k,n;
52     //freopen("1.in","r",stdin);
53     while(scanf("%d",&n)!=EOF)
54     {
55         bool flag=0;
56         if(n==-1)   break;
57         st.clear();
58         char s[30],e[30];
59         scanf("%s%s",s,e);
60         if(strcmp(s,e)==0)
61         {
62             flag=1;
63         }
64         st[s]=1;
65         st[e]=2;
66         tot=3;
67         for(i=1;i<=150;i++)
68         {
69             for(j=1;j<=150;j++)   c[i][j]=c[j][i]=((i==j)?0:maxint);
70         }
71         for(i=1;i<=150;i++)
72         {
73             dist[i]=maxint;
74         }
75         for(i=1;i<=n;i++)
76         {
77             int w;
78             scanf("%s%s%d",s,e,&w);
79             if(!st[s]) st[s]=tot++;
80             if(!st[e]) st[e]=tot++;
81             c[st[s]][st[e]]=c[st[e]][st[s]]=w;
82         }
83         dijkstra(1,tot);
84         if(flag)    printf("0\n");
85         else if(dist[2]==maxint) printf("-1\n");
86         else
87             printf("%d\n",dist[2]);
88     }
89     return 0;
90 }
时间: 2024-10-14 01:32:22

hdu 2112的相关文章

hdu 2112 (最短路+map)

链接:http://acm.hdu.edu.cn/showproblem.php?pid=2112 HDU Today Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 14515    Accepted Submission(s): 3405 Problem Description 经过锦囊相助,海东集团终于度过了危机,从此,HDU的发

hdu 2112 HDU Today (最短路)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2112 题目大意:给出起点和终点,然后算出最短的路. 不过有好多细节要注意: (1)起始点和终止点相等的时候,这里注意不能直接输出0,必须用标记,因为数据可能还没有处理完!!!此处贡献n次wa. (2)这里是某大神教我的用map进行转换,将字符串转换成数字,值得参考.map<string,int>M,V:不过这里同样是wa了好多次.要注意的是将最先输入的开始和结束的点也要放到这个map里面. (3)

HDU 2112 HDU Today (Dijkstra算法)

HDU Today Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 13952    Accepted Submission(s): 3264 Problem Description 经过锦囊相助,海东集团终于度过了危机,从此,HDU的发展就一直顺风顺水,到了2050年,集团已经相当规模了,据说进入了钱江肉丝经济开发区500强.这时候

hdu 2112 HDU Today

http://acm.hdu.edu.cn/showproblem.php?pid=2112 1 #include <cstdio> 2 #include <iostream> 3 #include <cstring> 4 #include <string> 5 #include <map> 6 #include <algorithm> 7 #define maxn 6000 8 using namespace std; 9 cons

HDU 2112 HDU Today,最短路径算法,Dijkstra

题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2112 HDU Today Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 13396    Accepted Submission(s): 3144 Problem Description 经过锦囊相助,海东集团终于度过了危机,从此,HD

hdu 2112 HDU Today 解题报告

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2112 题目意思:又是求最短路的,不过结合埋字符串来考查. 受之前1004 Let the Balloon Rise 学到用map 的解法做之后,有点蠢蠢欲动,当时见到要用字典树做有点吓坏了(之前看过下,非一般难理解,所以暂时放下了).于是,死就死吧,硬住头皮用map做,反反复复修改终于过了. 首先是memory limit exceeded,因为无读清题目意思,直接开10000 * 10000的数组

HDU 2112 HDU Today【最短路+map容器,spfa算法+Dijkstra算法】

HDU Today Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 25102    Accepted Submission(s): 6067 Problem Description 经过锦囊相助,海东集团终于度过了危机,从此,HDU的发展就一直顺风顺水,到了2050年,集团已经相当规模了,据说进入了钱江肉丝经济开发区500强.这时候

HDU 2112 HDU Today(Dijkstra)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2112 HDU Today Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 14527    Accepted Submission(s): 3412 Problem Description 经过锦囊相助,海东集团最终度过了危机.从此.HD

HDU 2112 Today(Djikstra+map)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2112 题目大意: 经过锦囊相助,海东集团终于度过了危机,从此,HDU的发展就一直顺风顺水,到了2050年,集团已经相当规模了,据说进入了钱江肉丝经济开发区500强.这时候,XHD夫妇也退居了二线,并在风景秀美的诸暨市浬浦镇陶姚村买了个房子,开始安度晚年了.这样住了一段时间,徐总对当地的交通还是不太了解.有时很郁闷,想去一个地方又不知道应该乘什么公交车,在什么地方转车,在什么地方下车(其实徐总自己有车

【hdu 2112】 HDU Today ( 最短路 Dijkstra)(map)

http://acm.hdu.edu.cn/showproblem.php?pid=2112 这道题给了一个将字符串与int对应的思路,就是使用map 这道题答案对了,但是没有AC,我也不知道为什么.. 1 #include <iostream> 2 #include <cstdio> 3 #include <string> 4 #include <queue> 5 #include <vector> 6 #include <map>