国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

hdu 2923 Floyd

2019-11-08 02:51:17
字體:
來源:轉載
供稿:網友

題目:

Einbahnstrasse

Time Limit: 2000/1000 MS (java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 3405    Accepted Submission(s): 1074PRoblem DescriptionEinbahnstra  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. InputYour 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 -> BA <-v - BA <-v -> BA 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. 
 OutputFor each test case, print the total distance traveled using the following format:k . VWhere 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

4個城市 2輛破車 5條路

收破車的公司在NewTroy 兩輛破車分別在Midvale Metrodale

接下來為5條路 有單向也有雙向

求回收所有破車的最小來回代價

思路:用Floyd,注意輸入處理,將字符串映射為數字

代碼:

#include<iostream>#include<cstring>#include<cstdio>#include<cstdlib>#include<ctype.h>    //tower()#include<set>  #include<map>  #include<iomanip>// cout<<setprecision(1)<<fixed<<a;#include<vector>   #include<cmath>	#include<algorithm>#include<bitset>#include<limits.h>#include<stack>#include<queue>using namespace std;const int maxn=10000010;const int inf=0x3f3f3f3f;int n,c,m,a[105][105];char save[1005][11];map<string,int> mat;void Floyd(){    int i,j,k;    for(i = 1;i<=n;i++)        for(j = 1;j<=n;j++)            for(k = 1;k<=n;k++)                if(a[j][i]+a[i][k]<a[j][k])                    a[j][k] = a[j][i]+a[i][k];}int main(){//124MS	1680K    int val,cnt,sum,cas = 1;    char s1[11],s2[11],s3[11];    char from,to;    while(scanf("%d%d%d",&n,&c,&m)==3&&(n+c+m)){        sum = 0;        mat.clear();        memset(a,inf,sizeof(a));        for(int i = 0; i<=c; i++) scanf("%s",save[i]);        cnt = 1;        for(int i = 0; i<m; i++){            scanf("%s %c-%d-%c %s",s1,&from,&val,&to,s3);            if(!mat[s1]) mat[s1] = cnt++;            if(!mat[s3]) mat[s3] = cnt++;            int x = mat[s1],y = mat[s3];            if(from == '<' && val<a[y][x]) a[y][x] = val;//輸入可能有重邊             if(to == '>' && val<a[x][y]) a[x][y] = val;        }        Floyd();        for(int i = 1; i<=c; i++) sum+=a[mat[save[0]]][mat[save[i]]]+a[mat[save[i]]][mat[save[0]]];        printf("%d. %d/n",cas++,sum);    }    return 0;}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 巴彦淖尔市| 洮南市| 太保市| 临邑县| 台安县| 华蓥市| 平遥县| 石阡县| 莎车县| 吴忠市| 通州区| 深泽县| 元谋县| 上林县| 丽水市| 西城区| 庆云县| 奇台县| 武乡县| 合江县| 新乐市| 德庆县| 台南县| 巩留县| 华池县| 云梦县| 荆州市| 平武县| 金川县| 广元市| 涡阳县| 武强县| 买车| 宜丰县| 晋中市| 孟州市| 称多县| 饶阳县| 中西区| 加查县| 咸阳市|