L3-007 天梯地圖(30 分)
阿新 • • 發佈:2018-08-25
輸出 n) 在線 tina lse 輸出格式 tin 最短距離 ems
本題要求你實現一個天梯賽專屬在線地圖,隊員輸入自己學校所在地和賽場地點後,該地圖應該推薦兩條路線:一條是最快到達路線;一條是最短距離的路線。題目保證對任意的查詢請求,地圖上都至少存在一條可達路線。
輸入格式:
輸入在第一行給出兩個正整數N(2 <= N <=500)和M,分別為地圖中所有標記地點的個數和連接地點的道路條數。隨後M行,每行按如下格式給出一條道路的信息:
V1 V2 one-way length time
其中V1和V2是道路的兩個端點的編號(從0到N-1);如果該道路是從V1到V2的單行線,則one-way為1,否則為0;length是道路的長度;time是通過該路所需要的時間。最後給出一對起點和終點的編號。
輸出格式:
首先按下列格式輸出最快到達的時間T和用節點編號表示的路線:
Time = T: 起點 => 節點~1~ => ... => 終點
然後在下一行按下列格式輸出最短距離D和用節點編號表示的路線:
Distance = D: 起點 => 節點~1~ => ... => 終點
如果最快到達路線不唯一,則輸出幾條最快路線中最短的那條,題目保證這條路線是唯一的。而如果最短距離的路線不唯一,則輸出途徑節點數最少的那條,題目保證這條路線是唯一的。
如果這兩條路線是完全一樣的,則按下列格式輸出:
Time = T; Distance = D: 起點 => 節點~1~ => ... => 終點
輸入樣例1:
10 15
0 1 0 1 1
8 0 0 1 1
4 8 1 1 1
5 4 0 2 3
5 9 1 1 4
0 6 0 1 1
7 3 1 1 2
8 3 1 1 2
2 5 0 2 2
2 1 1 1 1
1 5 0 1 3
1 4 0 1 1
9 7 1 1 3
3 1 0 2 5
6 3 1 2 1
5 3
輸出樣例1:
Time = 6: 5 => 4 => 8 => 3
Distance = 3: 5 => 1 => 3
輸入樣例2:
7 9 0 4 1 1 1 1 6 1 3 1 2 6 1 1 1 2 5 1 2 2 3 0 0 1 1 3 1 1 3 1 3 2 1 2 1 4 5 0 2 2 6 5 1 2 1 3 5
輸出樣例2:
Time = 3; Distance = 4: 3 => 2 => 5
跟甲級題Online Map基本是同一道題,要求稍有不同。
代碼:
#include <stdio.h> #include <string.h> #define inf 0x3f3f3f3f int m,n,source,destination,a,b,w,l,t; int length[501][501],times[501][501],dis[501],cost[501],dis1[501],num[501],vis[501],path1[501],path2[501]; void getpath1(int x) { if(x != source) { getpath1(path1[x]); printf(" => "); } printf("%d",x); } void getpath2(int x) { if(x != source) { getpath2(path2[x]); printf(" => "); } printf("%d",x); } int equals(int x) { if(path1[x] != path2[x])return 0; else if(x == source)return 1; return equals(path1[x]); } int main() { scanf("%d%d",&n,&m); for(int i = 0;i < n;i ++) { for(int j = 0;j < n;j ++) { length[i][j] = times[i][j] = inf; } dis[i] = cost[i] = dis1[i] = inf; path1[i] = path2[i] = -1; } for(int i = 0;i < m;i ++) { scanf("%d%d%d%d%d",&a,&b,&w,&l,&t); if(w) { length[a][b] = l; times[a][b] = t; } else { length[a][b] = length[b][a] = l; times[a][b] = times[b][a] = t; } } scanf("%d%d",&source,&destination); dis[source] = cost[source] = dis1[source] = 0; while(1) { int t = -1,mi = inf; for(int i = 0;i < n;i ++) { if(!vis[i] && mi > cost[i]) { mi = cost[i]; t = i; } } if(t == -1)break; vis[t] = 1; for(int i = 0;i < n;i ++) { if(vis[i] || times[t][i] == inf)continue; if(cost[i] > cost[t] + times[t][i]) { path2[i] = t; cost[i] = cost[t] + times[t][i]; dis1[i] = dis1[t] + length[t][i]; } else if(cost[i] == cost[t] + times[t][i] && dis1[i] > dis1[t] + length[t][i]) { dis1[i] = dis1[t] + length[t][i]; path2[i] = t; } } } memset(vis,0,sizeof(vis)); while(1) { int t = -1,mi = inf; for(int i = 0;i < n;i ++) { if(!vis[i] && mi > dis[i]) { mi = dis[i]; t = i; } } if(t == -1)break; vis[t] = 1; for(int i = 0;i < n;i ++) { if(vis[i] || length[t][i] == inf)continue; if(dis[i] > dis[t] + length[t][i]) { path1[i] = t; dis[i] = dis[t] + length[t][i]; num[i] = num[t] + 1; } else if(dis[i] == dis[t] + length[t][i] && num[i] > num[t] + 1) { num[i] = num[t] + 1; path1[i] = t; } } } printf("Time = %d",cost[destination]); if(!equals(destination)) { printf(": "); getpath2(destination); printf("\n"); } else { printf("; "); } printf("Distance = %d: ",dis[destination]); getpath1(destination); }
L3-007 天梯地圖(30 分)