hdu 2923 Einbahnstrasse

来源:互联网 发布:向mac势力低头 表情包 编辑:程序博客网 时间:2024/05/16 14:11

点击打开链接

Einbahnstrasse

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


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 5NewTroy Midvale MetrodaleNewTroy <-20-> MidvaleMidvale --50-> BakerlineNewTroy <-5-- BakerlineMetrodale <-30-> NewTroyMetrodale --5-> Bakerline0 0 0
 

Sample Output
1. 80
 

题意:一开始给出三个数字,n,c,m,代表城市数,破车数,道路数

然后跟着m条路线,箭头为指向,数字为花费,然后求出从公司派出车,到每个城市回收破车的最小花费,要注意每辆车只能回收一辆破车

注意:cost[x][y]+cost[y][x]!=cost[x][y]*2;

#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<map>using namespace std;const int inf=0x3f3f3f3f;int cost[1010][1010];string str[1010];int n,c,r;int main(){    int ca=1;    char s[100],e[100];    char fro,to;    int val,ans,p,q,sum;    map<string,int>ff;    while(scanf("%d%d%d",&n,&c,&r))    {        if(n==0&&c==0&&r==0)            break;        ff.clear();        ans=1;        for(int i=0;i<=n;i++)        {            for(int j=0;j<=n;j++)                cost[i][j]=inf;            cost[i][i]=0;        }        for(int i=0;i<=c;i++)            cin>>str[i];        for(int i=0;i<r;i++)        {            scanf("%s %c-%d-%c %s",s,&fro,&val,&to,e);            if(!ff[s])                ff[s]=ans++;            if(!ff[e])                ff[e]=ans++;            p=ff[s];            q=ff[e];            if(fro=='<'&&cost[q][p]>val)                cost[q][p]=val;            if(to=='>'&&cost[p][q]>val)                cost[p][q]=val;        }        for(int k=1;k<=n;k++)        {            for(int i=1;i<=n;i++)            {                for(int j=1;j<=n;j++)                {                    cost[i][j]=min(cost[i][j],cost[i][k]+cost[k][j]);                }            }        }        sum=0;        for(int i=1;i<=c;i++)        {            sum+=cost[ff[str[0]]][ff[str[i]]]+cost[ff[str[i]]][ff[str[0]]];        }        printf("%d. %d\n",ca++,sum);    }    return 0;}

参考博客

http://blog.csdn.net/libin56842/article/details/17142873