博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT 1030 Travel Plan[图论][难]
阅读量:6499 次
发布时间:2019-06-24

本文共 5860 字,大约阅读时间需要 19 分钟。

1030 Travel Plan (30)(30 分)

A traveler's map gives the distances between cities along the highways, together with the cost of each highway. Now you are supposed to write a program to help a traveler to decide the shortest path between his/her starting city and the destination. If such a shortest path is not unique, you are supposed to output the one with the minimum cost, which is guaranteed to be unique.

Input Specification:

Each input file contains one test case. Each case starts with a line containing 4 positive integers N, M, S, and D, where N (<=500) is the number of cities (and hence the cities are numbered from 0 to N-1); M is the number of highways; S and D are the starting and the destination cities, respectively. Then M lines follow, each provides the information of a highway, in the format:

City1 City2 Distance Cost

where the numbers are all integers no more than 500, and are separated by a space.

Output Specification:

For each test case, print in one line the cities along the shortest path from the starting point to the destination, followed by the total distance and the total cost of the path. The numbers must be separated by a space and there must be no extra space at the end of output.

Sample Input

4 5 0 30 1 1 201 3 2 300 3 4 100 2 2 202 3 1 20

Sample Output

0 2 3 3 40

 题目大意:给出起点和终点,找出起点和终点之间的所有最短路径,并且cost最小。每条边有两个属性,一个是距离,一个是花费。

// 这个就是迪杰斯特拉裸题,我一定要做出来,见过多少次这样的题了。

#include 
#include
#include
using namespace std;#define INF 999999int edge[500][500];int cost[500][500];int dist[500],co[500];bool vis[500];int pre[500];vector
path;int main() { int n,m,s,d; cin>>n>>m>>s>>d; int f,t,e,c; fill(cost[0],cost[0]+500*500,INF);//二维数组必须用cost[0],而不能用cost。 fill(edge[0],edge[0]+500*500,INF);//这么多初始化有点烦。 for(int i=0;i
>f>>t>>e>>c; edge[f][t]=edge[t][f]=e; cost[f][t]=cost[t][f]=c; } fill(dist,dist+n,INF); fill(co,co+n,INF); fill(pre,pre+n,0); for(int i=0;i
dist[u]+edge[u][j]){ dist[j]=dist[u]+edge[u][j]; pre[j]=u; co[j]=co[u]+cost[u][j]; }else if(dist[j]==dist[u]+edge[u][j]){ if(co[j]>co[u]+cost[u][j]){ pre[j]=u; co[j]=co[u]+cost[u][j]; } } } } } path.push_back(d); u=d; while(pre[u]!=-1){ path.push_back(pre[u]); u=pre[u]; }//s不用再单独push了。 for(int i=path.size()-1;i>=0;i--){ cout<
<<" "; } cout<
<<" "<

 

//第一次我是这么写的,但是提示内存超限。需要改进啊。原来考点在这个地方啊,又是考内存。内存超限:您的程序使用了超过限制的内存。case通过率为30.00%

都改成了vector加上resize,也不行,也是超时。

 //代码来自:https://www.liuchuo.net/archives/2369      十分值得学习,原来用dfs即可遍历。

#include 
#include
#include
using namespace std;int n, m, s, d;int e[510][510], dis[510], cost[510][510];vector
pre[510];//四个二维,一个一维bool visit[510];const int inf = 99999999;vector
path, temppath;int mincost = inf;void dfs(int v) {
//原来可以用向量来保存前驱,以前想到过但是不会实现。原来使用dfs. temppath.push_back(v); if(v == s) { int tempcost = 0; for(int i = temppath.size() - 1; i > 0; i--) { int id = temppath[i], nextid = temppath[i-1]; tempcost += cost[id][nextid]; } if(tempcost < mincost) { mincost = tempcost; path = temppath;//直接对一个向量赋值,即可。 } temppath.pop_back(); return ; } for(int i = 0; i < pre[v].size(); i++) dfs(pre[v][i]); temppath.pop_back();//最终把自己弹了出来。}int main() { fill(e[0], e[0] + 510 * 510, inf); fill(dis, dis + 510, inf); scanf("%d%d%d%d", &n, &m, &s, &d); for(int i = 0; i < m; i++) { int a, b; scanf("%d%d", &a, &b); scanf("%d", &e[a][b]); e[b][a] = e[a][b]; scanf("%d", &cost[a][b]); cost[b][a] = cost[a][b]; } pre[s].push_back(s);//s的前驱是s自己。 dis[s] = 0; for(int i = 0; i < n; i++) { int u = -1, minn = inf; for(int j = 0; j < n; j++) { if(visit[j] == false && dis[j] < minn) { u = j; minn = dis[j]; } } if(u == -1) break; visit[u] = true; for(int v = 0; v < n; v++) { if(visit[v] == false && e[u][v] != inf) { if(dis[v] > dis[u] + e[u][v]) { dis[v] = dis[u] + e[u][v]; pre[v].clear(); pre[v].push_back(u); } else if(dis[v] == dis[u] + e[u][v]) { pre[v].push_back(u); } } } } dfs(d); for(int i = path.size() - 1; i >= 0; i--) printf("%d ", path[i]); printf("%d %d", dis[d], mincost); return 0;}

 //我也不知道我改了什么,把自己的代码修好了。就最后循环出路径的while循环修改了,其他都没动,开心。

#include 
#include
#include
using namespace std;#define INF 99999int edge[500][500];int cost[500][500];int dist[500],co[500];bool vis[500];int pre[500];vector
path;//两个二维矩阵,4个一维矩阵,一个向量。int main() { int n,m,s,d; cin>>n>>m>>s>>d; int f,t,e,c; fill(cost[0],cost[0]+500*500,INF);//二维数组必须用cost[0],而不能用cost。 fill(edge[0],edge[0]+500*500,INF);//这么多初始化有点烦。 for(int i=0;i
>f>>t>>e>>c; edge[f][t]=edge[t][f]=e; cost[f][t]=cost[t][f]=c; } fill(dist,dist+n,INF); fill(co,co+n,INF); fill(pre,pre+n,-1);//要全初始化为-1 //选出距离s最近的点。 dist[s]=0; co[s]=0; int u,minn; for(int i=0;i
dist[u]+edge[u][j]){ dist[j]=dist[u]+edge[u][j]; pre[j]=u; co[j]=co[u]+cost[u][j]; }else if(dist[j]==dist[u]+edge[u][j]){ if(co[j]>co[u]+cost[u][j]){ pre[j]=u; co[j]=co[u]+cost[u][j]; } } } } } u=d; while(u!=-1){ path.push_back(u); u=pre[u]; }//s不用再单独push了。 for(int i=path.size()-1;i>=0;i--){ cout<
<<" "; } cout<
<<" "<

 

转载于:https://www.cnblogs.com/BlueBlueSea/p/9451503.html

你可能感兴趣的文章
android单位转换小程序,微信小程序中rpx与rem单位转换
查看>>
html绝对定位重叠,HTML_firefox下绝对定位元素重叠造成不可点击问题,重构地图网站过程中碰到的,f - phpStudy...
查看>>
ps切图教程 android,PS前端切图完整教程
查看>>
html显示服务器状态,显示服务器时间并一直显示(html代码)
查看>>
在线html代码优化,网站seo优化html代码方法
查看>>
HTML如何把输入框变成必填值,required输入框为必填项
查看>>
在html中哪一个不是链接的目标属性,HTML试题
查看>>
android otg 挂载流程,android USB OTG功能如何打开及实现
查看>>
html属性board,pin_board.html
查看>>
html定位有几种,POSITION定位有哪几种?各有什么特点?
查看>>
苹果平板可以用html么,如何将ipad苹果平板电脑中的safari浏览器禁用
查看>>
背锅侠逆袭之路
查看>>
移动互联企业级应用三大场景
查看>>
vmware的APD和PDL详细解析
查看>>
理解:思科设备上的网络地址翻译功能(NAT)功能
查看>>
演示:使用协议分析器取证IPv6的报文结构
查看>>
oracle 11gr2 rac中的4种IP解说
查看>>
为什么你找不到工作?
查看>>
SCCM 2007系列3 配置
查看>>
20 个免费的 jQuery 的工具提示插件:
查看>>