Idiomatic phrases game Time Limit: 2 seconds memory limit: 65536 KB
Tom is playing a game calledIdiomatic phrases game. An idiom consists of several Chinese characters and has a certain meaning. this game will give Tom two idioms. he shoshould build a list of idioms and the list starts and ends with the two given idioms. for every two adjacent idioms, the last Chinese character of the former idiom shocould be the same as the first character of the latter one. for each time, Tom has a dictionary that he must pick idioms from and each idiom in the dictionary has a value indicates how Long Tom will take to find the next proper idiom in the final list. now you are asked to write a program to compute the shortest time Tom will take by giving you the idiom dictionary.
Input
The input consists of several test cases. each test case contains an idiom dictionary. the dictionary is started by an integer N (0 <n <1000) in one line. the following is n lines. each line contains an integer T (the time Tom will take to work out) and an idiom. one idiom consists of several Chinese characters (at least 3) and one Chinese Character consists of four hex digit (I. E ., 0 to 9 and A to F ). note that the first and last idioms in the dictionary are the source and target idioms in the game. the input ends up with a case that n = 0. do not process this case.
Output
One line for each case. Output an integer indicating the shortest time Tome will take. If the list can not be built, please output-1.
Sample Input
55 12345978ABCD23415 23415608ACBD34127 34125678AEFD412315 23415673ACC341234 41235673FBCD2156220 12345678ABCD30 DCBF5432167D0
Sample output
17-1
The last four characters of a character are the same as the first four characters of the other character. Then, an edge is connected and the shortest path from 0 to N-1 is obtained.
#include"stdio.h"#include"string.h"#include"queue"#include"algorithm"using namespace std;#define N 1005#define inf 0x7fffffffint mark[N],g[N][N];int dis[N];struct node{ char s1[5],s2[5]; int w;}e[N];void dijkstra(int s,int n){ int i,u,min; for(i=0;i<n;i++) dis[i]=g[s][i]; memset(mark,0,sizeof(mark)); mark[s]=1; while(1) { u=0; min=inf; for(i=0;i<n;i++) { if(!mark[i]&&dis[i]<min) { min=dis[i]; u=i; } } if(u==0) break; mark[u]=1; for(i=0;i<n;i++) { if(!mark[i]&&g[u][i]<inf&&dis[i]>dis[u]+g[u][i]) { dis[i]=dis[u]+g[u][i]; } } } if(dis[n-1]<inf) printf("%d\n",dis[n-1]); else printf("-1\n");}int main(){ int i,j,k,n,w; char str[50]; while(scanf("%d",&n),n) { for(i=0;i<n;i++) { scanf("%d %s",&w,&str); int m=strlen(str); for(j=0;j<4;j++) e[i].s1[j]=str[j]; e[i].s1[j]='\0'; for(k=0,j=m-4;j<m;j++) e[i].s2[k++]=str[j]; e[i].s2[k]='\0'; e[i].w=w; } for(i=0;i<n;i++) { for(j=0;j<n;j++) { g[i][j]=(i==j?0:inf); if(strcmp(e[i].s2,e[j].s1)==0) g[i][j]=e[i].w; if(strcmp(e[i].s1,e[j].s2)==0) g[j][i]=e[j].w; } } dijkstra(0,n); } return 0;}