UVA 11374 Airport Express SPFA||dijkstra
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2369
Description
Problem D: Airport Express |
In a small city called Iokh, a train service, Airport-Express, takes residents to the airport more quickly than other transports. There are two types of trains in Airport-Express, the Economy-Xpressand the Commercial-Xpress.
They travel at different speeds, take different routes and have different costs.
Jason is going to the airport to meet his friend. He wants to take the Commercial-Xpress which is supposed to be faster, but he doesn't have enough money. Luckily he has a ticket for the Commercial-Xpress which can take him one station forward. If he used the
ticket wisely, he might end up saving a lot of time. However, choosing the best time to use the ticket is not easy for him.
Jason now seeks your help. The routes of the two types of trains are given. Please write a program to find the best route to the destination. The program should also tell when the ticket should be used.
Input
The input consists of several test cases. Consecutive cases are separated by a blank line.
The first line of each case contains 3 integers, namely N, S and E (2 ≤ N ≤ 500, 1 ≤ S, E ≤ N),
which represent the number of stations, the starting point and where the airport is located respectively.
There is an integer M (1 ≤ M ≤ 1000) representing the number of connections between the stations of the Economy-Xpress. The next Mlines give the information of the routes of the Economy-Xpress.
Each consists of three integers X, Y and Z (X, Y ≤ N, 1 ≤ Z ≤ 100). This means X and Y are
connected and it takes Z minutes to travel between these two stations.
The next line is another integer K (1 ≤ K ≤ 1000) representing the number of connections between the stations of the Commercial-Xpress. The next K lines contain the information of
the Commercial-Xpress in the same format as that of the Economy-Xpress.
All connections are bi-directional. You may assume that there is exactly one optimal route to the airport. There might be cases where you MUST use your ticket in order to reach the airport.
Output
For each case, you should first list the number of stations which Jason would visit in order. On the next line, output "Ticket Not Used" if you decided NOT to use the ticket; otherwise, state the station where Jason should get on the train
of Commercial-Xpress. Finally, print the total time for the journey on the last line. Consecutive sets of output must be separated by a blank line.
Sample Input
4 1 4
4
1 2 2
1 3 3
2 4 4
3 4 5
1
2 4 3
Sample Output
1 2 4
2
5
Problemsetter: Raymond Chun
Originally appeared in CXPC, Feb. 2004
题目大意:
机场快线分为经济线和商业线。两种路线价格、路线、速度不同。给你初始地点和目标地点,还有所有的经济线和商业线,要你求出从到目标地点最快的路线,这条路线有一个要求就是最多坐一条商业线,当然也可以不做,速度最快就好。
要求输出所经过的路径、在哪个站点使用商业线、以及总的时间。
思路:
我们可以先调用两次dijkstra或者两次SPFA,求出起点和终点到所有点的最短路径,然后商业线一一枚举。
example:
INPUT:
5 5 1
3
1 2 4
2 3 4
3 4 4
5
1 2 2
2 3 2
1 3 2
2 4 2
4 5 10
OUT:
5 4 3 2 1
5
22
判断商业线的时候,要特别注意。看下面的代码,要判断双向的。我一开始一直WA就是这样。。
dijkstra版本:0.019s
#include<cstdio>
#include<cstring>
#include<queue>
const int INF=999999;
const int MAXN=520;
const int MAXM=2520;
using namespace std;
struct edge
{
int to;
int val;
int next;
}e[MAXM]; struct node
{
int from;
int val;
node(int f,int v){from=f;val=v;}
bool operator < (const node& b)const
{
return val > b.val;
}
}; int head[MAXN],len;
int dis_s[MAXN],dis_r[MAXN],path_s[MAXN],path_r[MAXN]; void add(int from,int to,int val)
{
e[len].to=to;
e[len].val=val;
e[len].next=head[from];
head[from]=len++;
} int n,s,en;
void dijkstra(int start,int dis[],int path[])
{
bool vis[MAXN]={0};
dis[start]=0; priority_queue<node> q;
q.push(node(start,0));
int num=0;
while(!q.empty())
{
node temp=q.top();
q.pop(); if(vis[temp.from])
continue; vis[temp.from]=true; if(num==n)
break;
for(int i=head[temp.from];i!=-1;i= e[i].next)
{
if( !vis[e[i].to] &&
dis[temp.from] + e[i].val < dis[e[i].to])
{
dis[e[i].to]=dis[temp.from] + e[i].val ;
path[e[i].to] = temp.from;
q.push(node(e[i].to,dis[e[i].to]));
}
}
}
} void print(int cur)
{
if(path_s[cur]!=-1)
print(path_s[cur]); if(cur!=en)
printf("%d ",cur);
else
printf("%d\n",cur);
}
int main()
{
bool not_first=false;
while(~scanf("%d%d%d",&n,&s,&en))
{
if(not_first)
printf("\n");
not_first=true; len=0;
for(int i=1;i<=n;i++)
{
dis_s[i]=dis_r[i]=INF;
head[i]=path_r[i]=path_s[i]=-1;
} int m;
scanf("%d",&m);
for(int i=0;i<m;i++)
{
int from,to,val;
scanf("%d%d%d",&from,&to,&val);
add(from,to,val);
add(to,from,val);
}
dijkstra(s,dis_s,path_s);
dijkstra(en,dis_r,path_r); int k;
scanf("%d",&k);
int ans_from=-1,ans_to,ans_val,ans=dis_s[en]; for(int i=0;i<k;i++)
{
int from,to,val,temp;
scanf("%d%d%d",&from , &to , &val );
temp=dis_s[from] + dis_r[to] + val;
if(temp < ans)
{
ans=temp;
ans_from=from;
ans_to=to;
ans_val=val;
}
temp=dis_s[to] + dis_r[from] + val;
if(temp < ans)
{
ans=temp;
ans_from=to;
ans_to=from;
ans_val=val;
}
}
if(ans_from==-1)
print(en);
else
{
print(ans_from);
int cur=ans_to;
while(cur!=en)
{
printf("%d ",cur);
cur=path_r[cur];
}
printf("%d\n",en);
}
if(ans_from==-1)
printf("Ticket Not Used\n");
else
printf("%d\n",ans_from);
printf("%d\n",ans); } return 0;
}
采用SLF优化的SPFA版本:0.015s
#include<cstdio>
#include<cstring>
#include<queue>
const int INF=999999;
const int MAXN=520;
const int MAXM=2520;
using namespace std;
struct edge
{
int to;
int val;
int next;
}e[MAXM]; int head[MAXN],len;
int dis_s[MAXN],dis_r[MAXN],path_s[MAXN],path_r[MAXN]; void add(int from,int to,int val)
{
e[len].to=to;
e[len].val=val;
e[len].next=head[from];
head[from]=len++;
} int n,s,en;
void SPFA(int start,int dis[],int path[])
{
bool vis[MAXN]={0};
dis[start]=0; deque<int> q;
q.push_back(start);
vis[start]=true;
while(!q.empty())
{
int cur=q.front();
q.pop_front();
vis[cur]=false;
for(int i=head[cur];i!=-1;i=e[i].next)
{
int id=e[i].to;
if( dis[cur] + e[i].val < dis[id] )
{
path[id]=cur;
dis[id]=dis[cur] + e[i].val;
if(!vis[id])
{
if(!q.empty() && dis[id] <dis[q.front()] )
q.push_front(id);
else
q.push_back(id);
vis[id]=true;
}
}
}
}
}
void print(int cur)
{
if(path_s[cur]!=-1)
print(path_s[cur]); if(cur!=en)
printf("%d ",cur);
else
printf("%d\n",cur);
}
int main()
{
bool not_first=false;
while(~scanf("%d%d%d",&n,&s,&en))
{
if(not_first)
printf("\n");
not_first=true; len=0;
for(int i=1;i<=n;i++)
{
dis_s[i]=dis_r[i]=INF;
head[i]=path_r[i]=path_s[i]=-1;
} int m;
scanf("%d",&m);
for(int i=0;i<m;i++)
{
int from,to,val;
scanf("%d%d%d",&from,&to,&val);
add(from,to,val);
add(to,from,val);
}
SPFA(s,dis_s,path_s);
SPFA(en,dis_r,path_r); int k;
scanf("%d",&k);
int ans_from=-1,ans_to,ans_val,ans=dis_s[en]; for(int i=0;i<k;i++)
{
int from,to,val,temp;
scanf("%d%d%d",&from , &to , &val );
temp=dis_s[from] + dis_r[to] + val;
if(temp < ans)
{
ans=temp;
ans_from=from;
ans_to=to;
ans_val=val;
}
temp=dis_s[to] + dis_r[from] + val;
if(temp < ans)
{
ans=temp;
ans_from=to;
ans_to=from;
ans_val=val;
}
}
if(ans_from==-1)
print(en);
else
{
print(ans_from);
int cur=ans_to;
while(cur!=en)
{
printf("%d ",cur);
cur=path_r[cur];
}
printf("%d\n",en);
}
if(ans_from==-1)
printf("Ticket Not Used\n");
else
printf("%d\n",ans_from);
printf("%d\n",ans); } return 0;
}
UVA 11374 Airport Express SPFA||dijkstra的更多相关文章
- UVA - 11374 - Airport Express(堆优化Dijkstra)
Problem UVA - 11374 - Airport Express Time Limit: 1000 mSec Problem Description In a small city c ...
- UVA - 11374 Airport Express (Dijkstra模板+枚举)
Description Problem D: Airport Express In a small city called Iokh, a train service, Airport-Express ...
- UVA 11374 Airport Express 机场快线(单源最短路,dijkstra,变形)
题意: 给一幅图,要从s点要到e点,图中有两种无向边分别在两个集合中,第一个集合是可以无限次使用的,第二个集合中的边只能挑1条.问如何使距离最短?输出路径,用了第二个集合中的哪条边,最短距离. 思路: ...
- UVa 11374 - Airport Express ( dijkstra预处理 )
起点和终点各做一次单源最短路, d1[i], d2[i]分别代表起点到i点的最短路和终点到i点的最短路,枚举商业线车票cost(a, b); ans = min( d1[a] + cost(a, b ...
- UVA 11374 Airport Express(最短路)
最短路. 把题目抽象一下:已知一张图,边上的权值表示长度.现在又有一些边,只能从其中选一条加入原图,使起点->终点的距离最小. 当加上一条边a->b,如果这条边更新了最短路,那么起点st- ...
- UVA 11374 Airport Express (最短路)
题目只有一条路径会发生改变. 常见的思路,预处理出S和T的两个单源最短路,然后枚举商业线,商业线两端一定是选择到s和t的最短路. 路径输出可以在求最短路的同时保存pa数组得到一棵最短路树,也可以用di ...
- UVA 11374 Airport Express(枚举+最短路)
枚举每条商业线<a, b>,设d[i]为起始点到每点的最短路,g[i]为终点到每点的最短路,ans便是min{d[a] + t[a, b] + g[b]}.注意下判断是否需要经过商业线.输 ...
- 训练指南 UVA - 11374(最短路Dijkstra + 记录路径 + 模板)
layout: post title: 训练指南 UVA - 11374(最短路Dijkstra + 记录路径 + 模板) author: "luowentaoaa" catalo ...
- UVA-11374 Airport Express (dijkstra+枚举)
题目大意:n个点,m条无向边,边权值为正,有k条特殊无向边,起止点和权值已知,求从起点到终点的边权值最小的路径,特殊边最多只能走一条. 题目分析:用两次dijkstra求出起点到任何一个点的最小权值, ...
随机推荐
- LinkedIn Cubert 实践指南
· LinkedIn Cubert安装指南 · Understanding Cubert Concepts(一)Partitioned Blocks · Understanding Cubert Co ...
- 第一天,Mysql安装,DDL(数据库定义语言),DBA,DML(数据库操纵语言),导入外面的sql文件
把“D:\mysql-5.6.22-winx64\bin”添加到系统环境变量path中了,然后在任意目录可访问mysql等命令,这样如登录等操作就不需要进入MySQL安装目录才好执行! MySQL下载 ...
- Autoencoders and Sparsity(一)
An autoencoder neural network is an unsupervised learning algorithm that applies backpropagation, se ...
- IIS6/7/8 WEBserver不能訪问grf报表模板文件的问题
通过 IE不能訪问到 .grf 报表文件,这是由于 IIS6/7/8对訪问的扩展名做了限制,除了已经定义的扩展名之外.其它的扩展名都不能訪问.这跟 IIS5 不一样,IIS5 对全部的扩展名都不做限制 ...
- Irrlicht 3D Engine 笔记系列 之 教程5- User Interface
作者:i_dovelemon 日期:2014 / 12 / 18 来源:CSDN 主题:GUI 引言 今天.博主学习了第五个教程. 这个教程解说了怎样使用Irrlicht内置的一个基础模块.GUI模块 ...
- hdu 3294 Girls' research
#include<stdio.h> #include<string.h> #define MAX 200020 char s[MAX],ss[MAX*2],str[2]; in ...
- HBase高速导入数据--BulkLoad
Apache HBase是一个分布式的.面向列的开源数据库.它能够让我们随机的.实时的訪问大数据.可是如何有效的将数据导入到HBase呢?HBase有多种导入数据的方法.最直接的方法就是在MapRed ...
- chrome模拟手机功能
在搭建好web側环境之后.能够使用chrome来模拟手机的功能 直接上图吧: 图1是直接模拟一个通用的界面 图2里面能够选择不同的手机型号,还是比較全的! 选择一个查看一下,和手机是一样的效果,非常赞 ...
- 【编程】概念的理解 —— socket
socket:A socket is something into which something is plugged or fitted (also called a receptacle). A ...
- 18.Node.js 事件循环
转自:http://www.runoob.com/nodejs/nodejs-tutorial.html Node.js 是单进程单线程应用程序,但是通过事件和回调支持并发,所以性能非常高. Node ...