HDU 2923 Einbahnstrasse 【Floyd+map】

古城微笑少年丶 2022-06-05 01:46 217阅读 0赞

Einbahnstrasse

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3803 Accepted Submission(s): 1217

Problem Description

Einbahnstra e (German for a one-way street) is a street on which vehicles should only move in one direction. One reason for having one-way streets is to facilitate a smoother flow of traffic through crowded areas. This is useful in city centers, especially old cities like Cairo and Damascus. Careful planning guarantees that you can get to any location starting from any point. Nevertheless, drivers must carefully plan their route in order to avoid prolonging their trip due to one-way streets. Experienced drivers know that there are multiple paths to travel between any two locations. Not only that, there might be multiple roads between the same two locations. Knowing the shortest way between any two locations is a must! This is even more important when driving vehicles that are hard to maneuver (garbage trucks, towing trucks, etc.)

You just started a new job at a car-towing company. The company has a number of towing trucks parked at the company’s garage. A tow-truck lifts the front or back wheels of a broken car in order to pull it straight back to the company’s garage. You receive calls from various parts of the city about broken cars that need to be towed. The cars have to be towed in the same order as you receive the calls. Your job is to advise the tow-truck drivers regarding the shortest way in order to collect all broken cars back in to the company’s garage. At the end of the day, you have to report to the management the total distance traveled by the trucks.

Input

Your program will be tested on one or more test cases. The first line of each test case specifies three numbers (N , C , and R ) separated by one or more spaces. The city has N locations with distinct names, including the company’s garage. C is the number of broken cars. R is the number of roads in the city. Note that 0 < N < 100 , 0<=C < 1000 , and R < 10000 . The second line is made of C + 1 words, the first being the location of the company’s garage, and the rest being the locations of the broken cars. A location is a word made of 10 letters or less. Letter case is significant. After the second line, there will be exactly R lines, each describing a road. A road is described using one of these three formats:

A -v -> B
A <-v - B
A <-v -> B

A and B are names of two different locations, while v is a positive integer (not exceeding 1000) denoting the length of the road. The first format specifies a one-way street from location A to B , the second specifies a one-way street from B to A , while the last specifies a two-way street between them. A , “the arrow”, and B are separated by one or more spaces. The end of the test cases is specified with a line having three zeros (for N , C , and R .)

The test case in the example below is the same as the one in the figure.

这里写图片描述

Output

For each test case, print the total distance traveled using the following format:

k . V

Where k is test case number (starting at 1,) is a space, and V is the result.

Sample Input

4 2 5
NewTroy Midvale Metrodale
NewTroy <-20-> Midvale
Midvale –50-> Bakerline
NewTroy <-5– Bakerline
Metrodale <-30-> NewTroy
Metrodale –5-> Bakerline
0 0 0

Sample Output

  1. 80

提议概括:

  拖车需要从公司出发将所有城市的破车拖回到车库,每次只能拖一辆破车。题目保证可以到达所有破车所在城市。

解题分析:

  同一个城市可能有很多个破车,两个城市之间可能有多条道路,要选最短的。也可能存在A到B本来是双向路,距离为x,但可能有一条路是从B到A且距离比x小,这时就需要更新距离。因为城市名是英文,可以用STl中的map函数,对城市进行标号。

AC代码:

  1. #include<stdio.h>
  2. #include<string.h>
  3. #include<string>
  4. #include<map>
  5. #include<stdio.h>
  6. #include<algorithm>
  7. using namespace std;
  8. #define N 115
  9. #define inf 99999999
  10. int e[N][N];
  11. void Floyd(int n)
  12. {
  13. int i, j, k;
  14. for(k = 1; k <= n; k++){
  15. for(i = 1; i <= n; i++)
  16. for(j = 1; j <= n; j++)
  17. if(e[i][j] > e[i][k]+e[k][j])
  18. e[i][j] = e[i][k]+e[k][j];
  19. }
  20. }
  21. int main()
  22. {
  23. int i, j, n, c, t, sum, num, l = 1, x, y;
  24. char s1[N], s2[N], from, to;
  25. int f[1005];
  26. map<string, int> mp;
  27. while(scanf("%d%d%d", &n, &c, &t), n || c || t){
  28. for(i = 1; i <= n; i++){
  29. for(j = 1; j <= n; j++)
  30. e[i][j] = inf;
  31. e[i][i] = 0;
  32. }
  33. mp.clear();
  34. j = 1;
  35. for(i = 0; i <= c; i++){
  36. scanf("%s", s1);
  37. if(!mp[s1]) mp[s1] = j++;
  38. f[i] = mp[s1];
  39. }
  40. while(t--){
  41. scanf("%s %c-%d-%c %s", s1, &from, &num, &to, s2);
  42. if(!mp[s1]) mp[s1] = j++;
  43. if(!mp[s2]) mp[s2] = j++;
  44. x = mp[s1];
  45. y = mp[s2];
  46. if(to == '>' && e[x][y]>num)
  47. e[x][y] = num;
  48. if(from == '<' && e[y][x]>num)
  49. e[y][x] = num;
  50. }
  51. Floyd(n);
  52. sum = 0;
  53. for(i = 1; i <= c; i++)
  54. sum += e[1][f[i]] + e[f[i]][1];
  55. printf("%d. %d\n", l++, sum);
  56. }
  57. return 0;
  58. }

发表评论

表情:
评论列表 (有 0 条评论,217人围观)

还没有评论,来说两句吧...

相关阅读

    相关 树状数组 hdu2689 hdu2838

    题意:给定一个正整数n,和一个1-n的一个排列,每个数可以和旁边的两个数的任意一个交换,每交换一次总次数就要加一,问将这个排列转换成一个递增的排列需要多少次交换? 题意可以转